Answers for "css disable textarea resize horizontal"

4

textarea resize off

<textarea class="myTextArea"></textarea>
<style>
  .myTextArea {
    resize: none;
  }
</style>
Posted by: Guest on April-24-2020

Code answers related to "css disable textarea resize horizontal"

Browse Popular Code Answers by Language