Answers for "text field limit html"

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
-1

how to set limit of words in input type text

<input type="text"title="likethis()"maxlength="200"placeholder="This will allow only 200 words">
Posted by: Guest on November-16-2021

Browse Popular Code Answers by Language