Issue
I have a textarea with 200px of height, but when I pass that 200px with text I want to have the textarea expanded instead of keeping the 200px of height with a scroll bar.
It is possible to do that only with CSS?
Solution
Instead of textarea
, you can use div
with contentEditable attribute:
div {
display: inline-block;
border: solid 1px #000;
min-height: 200px;
width: 300px;
}
<div contentEditable="true"></div>
Answered By - Engineer
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.