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>
Add overflow:auto
textarea { overflow: auto; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With