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: 2020-03-03T05:26:22+05:30

200 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements