Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Want to remove the scroll bar from text area?

Tags:

css

textarea

i made the text area and i want that when my text exceeds the width of text area then instead of creating scroll bar it should simply increase the width of text area how can i do this here is the html code and also the css which i am applying on this please suggest me some thing.i am trying to make this text area work like facebook comment box ?

<style>
.textarticle
 {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.18);
  width:600px;
  max-width:600px;
  min-height: 50px;
  max-height: 140px;
  border:1px solid E7DBDB;
  border-radius:5px;
  overflow:none;
 }
</style>

<html>
 <textarea class="textarticle" name="textarticl" placeholder="Enter Article">
</html>
like image 223
Ayyan Alvi Avatar asked Oct 24 '25 14:10

Ayyan Alvi


1 Answers

Add overflow:auto

textarea { overflow: auto; }

like image 121
Sagar Awasthi Avatar answered Oct 26 '25 03:10

Sagar Awasthi