10
How to leave a textarea
adjustable after it was set "resize: None"?
For example, I have a textarea
which has a value defined as resize:none
in CSS, but I want to leave the default value by placing an inline snippet.
.my_textarea{
border: 2px solid pink;
resize: none;
width: 300px;
height: 100px;
}
<textarea class="my_textarea"></textarea>
What is the default value for the "resize" attribute in a textarea?