05-35-img-maxwidth.html 667 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Image max-width constraints</title>
  6. <style>
  7. .img-container {
  8. padding: 1em;
  9. border: 1px solid #777;
  10. border-radius: 1em;
  11. width: 100px;
  12. display: inline-block;
  13. vertical-align: top;
  14. margin-right: 2em;
  15. }
  16. img {
  17. max-width: 100%;
  18. }
  19. .img-container-large {
  20. width: 500px;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="img-container">
  26. <img src="img/profile.jpg" alt="Charles the Cat">
  27. </div>
  28. <div class="img-container img-container-large">
  29. <img src="img/profile.jpg" alt="Charles the Cat">
  30. </div>
  31. </body>
  32. </html>