Answers for "how to create a limit for text box html"

CSS
1

text limit in css

body {
   margin: 20px;
}

.text {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}
Posted by: Guest on April-08-2020
0

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

Code answers related to "how to create a limit for text box html"

Browse Popular Code Answers by Language