Answers for "how do i limit text area in html"

3

css textarea limit

<textarea maxlength="20"></textarea>

<!-- limits the maximum input length up to 20 characters -->
Posted by: Guest on June-24-2020
2

text limit in html

<span style="
  display:inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 13ch;">
Lorem ipsum dolor sit amet
</span>
Posted by: Guest on October-28-2020

Browse Popular Code Answers by Language