How do we display the visible width of a text area in HTML?


Use the cols attribute in HTML to display the visible width of a textarea. You can try to run the following code to implement cols attribute −

Example

<!DOCTYPE html>
<html>
   <body>
      <textarea rows="3" cols="40">
         This is a demo paragraph. This is a demo paragraph.
         This is a demo paragraph. This is a demo paragraph.
      </textarea>
   </body>
</html>

Updated on: 03-Mar-2020

135 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements