Answers for "textarea not taking full width"

6

fix textarea size

resize: none;
Posted by: Guest on May-16-2020
0

textarea height fit content

const textarea = document.getElementById("txt");

textarea.addEventListener("input", function (e) {
  this.style.height = "auto";
  this.style.height = this.scrollHeight + "px";
});
Posted by: Guest on November-18-2021

Code answers related to "textarea not taking full width"

Browse Popular Code Answers by Language