
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
Set Maximum Width of an Element with JavaScript
Use the maxWidth property in JavaScript to set the maximum width.
Example
You can try to run the following code to set the maximum width of an element with JavaScript −
<!DOCTYPE html> <html> <body> <p>Click below to set Maximum width.</p> <button type="button" onclick="display()">Max Width</button> <div id="box"> <p>This is a div. This is a div. This is a div.</p> <p>This is a div. This is a div. This is a div.</p> <p>This is a div. This is a div. This is a div.</p> <p>This is a div. This is a div. This is a div.</p> <p>This is a div. This is a div. This is a div.</p> </div> <br> <script> function display() { document.getElementById("box").style.maxWidth = "80px"; } </script> </body> </html>
Advertisements