07-05-content-wrapper.html 653 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  6. <title>Content Wrapper</title>
  7. <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
  8. <style>
  9. body {
  10. margin: 0;
  11. }
  12. .wrapper {
  13. width: 95%;
  14. max-width: 76em;
  15. margin: 0 auto;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <!-- Some temporary style attributes added, just to see the effects of the wrapper. -->
  21. <div class="wrapper" style="background-color: #ccc; min-height: 300px;">
  22. <h1 style="margin: 0">My page</h1>
  23. </div>
  24. </body>
  25. </html>