Answers for "how to set character limit in textarea in css"

4

css textarea limit

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

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

css textarea set max characters

<!DOCTYPE html>
<html>
   <head>
      <title>HTML textarea Tag</title>
   </head>

   <body>
      <textarea rows = "5" cols = "40" maxlength = "100" name = "description">
            Enter answer here...
         </textarea>
      
   </body>
</html>
Posted by: Guest on December-19-2020

Code answers related to "how to set character limit in textarea in css"

Browse Popular Code Answers by Language