HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point{ padding:25px 0; border:1px solid #8c8c8c; } </style> </head> <body> <div id="point"> Maximum width of this container (div) is none. </div> <button onclick="myFunction()">Click Me</button> <script> function myFunction(){ var x = document.getElementById("point"); x.style.maxWidth = "250px" } </script> <p><strong>Note</strong>: Click on the button to set the maximum width of the div to 250px</p> </body> </html>
OUTPUT
×

Save as Private