Css

Disable resizable property of textarea

Share

Want to disable resizable property of textarea? Here is some tips to prevent the click on the bottom right corner of the textarea.

To disable resizable property of textarea, there are a few options.

<textarea name="txtName" id="txtID"></textarea>

CSS can solve this problem and unfortunately it’s only supported on 60% of used browsers nowadays. Basically, you can use below CSS rule to disable resizing behavior.

Let’s see some example to disable resizable property of textarea.

textarea {
resize: none;
}

Or, you can use name or id attribute wise:

textarea[name=txtName] {
resize: none;
}
#txtID {
resize: none;
}

Read Also: jQuery data attributes

Sometimes, you can resize by restrictions i.e. none, both, horizontal, vertical, and inherit. For below code, user can resize vertically, but the width is fixed.

textarea {
resize: vertical;
}

Unless overflow property is something other than visible, this property does nothing i.e. default for most elements. So, to use this, you will have to set something like overflow: scroll;

Recent Posts

Unlock Growth – Guide to Online Financing and Business Loans for Entrepreneurs

If you are in a financial crisis , or need to start a new business…

21 hours ago

Optimize Your Hormonal Balance: Enclomiphene Citrate for Enhanced Wellness

Hormonal balance plays a pivotal role in overall well-being, influencing various aspects of health, from…

2 days ago

Paul Kanes Explores the World of Canine Companionship through Dog Walking

Dog walking is an excellent way to maintain your furry friend's camaraderie and provides many…

2 days ago

Top 5 Must-Have Features Every Mobile App Needs to Succeed

Introduction Businesses understand the diverse requirements of mobile applications, which provide a competitive advantage. There…

2 days ago

IoT Data Analytics: Ways to Gain Value from IoT Data

The Internet of Things (IoT) has recently changed the world. It links gadgets together and…

2 days ago

The Rise of NFTs: Exploring the Impact of Non-Fungible Tokens on the Digital Economy

NFTs, or Non-Fungible Tokens, are revolutionizing the digital economy. These unique digital assets, authenticated through…

3 days ago