Answers for "html5 how to limit text length in html"

1

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

Code answers related to "html5 how to limit text length in html"

Browse Popular Code Answers by Language