How to make a textarea
adjustable after resize: none has been set?
For example, I have a textarea
that has a value set to resize:none
in CSS, however I want to leave the default value by putting 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?