Advertisement
here2share

HTML max-width

Aug 16th, 2016
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div.ex1 {
  6.     width:500px;
  7.     margin: auto;
  8.     border: 3px solid #73AD21;
  9. }
  10.  
  11. div.ex2 {
  12.     max-width:500px;
  13.     margin: auto;
  14.     border: 3px solid #73AD21;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <div class="ex1">This div element has width: 500px;</div>
  21. <br>
  22.  
  23. <div class="ex2">This div element has max-width: 500px;</div>
  24.  
  25. <p><strong>Tip:</strong> Drag the browser window to smaller than 500px wide, to see the difference between
  26. the two divs!</p>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement