
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Limit Input Text Length Using CSS3
With HTML, you can easily limit input length. However, with CSS3, it will not be possible, since CSS can’t be used to limit the number of input characters. This will cause a functional restriction.
CSS deals with presentation i.e. how your web page will look. This is done with HTML attribute malength, since it’s for behavior.
Let’s see how to do it in HTML −
Example
You can try to run the following code to limit input text length
<!DOCTYPE html> <html> <head> <title>HTML maxlength attribute</title> </head> <body> <form action=""> Student Name<br><input type="text" name="name" maxlength="20"><br><br> <input type="submit" value="Submit"> </form> </body> </html>
Advertisements