Guest User

Untitled

a guest
Jan 14th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <style>
  5. html,
  6. body {
  7. height: 100%;
  8. }
  9.  
  10. body {
  11. display: flex;
  12. flex-direction: column;
  13. }
  14.  
  15. .content {
  16. flex: 1 0 auto;
  17.  
  18. padding: 1rem;
  19. background: #e6f2ff;
  20. }
  21.  
  22. footer {
  23. flex: 0 0 auto;
  24.  
  25. padding: 1rem;
  26. background: #e6ffe6;
  27. }
  28.  
  29. </style>
  30. <meta charset="utf-8">
  31. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  32. <title>Hello, world!</title>
  33. </head>
  34. <body>
  35. <div class="content">content</div>
  36. <footer>footer</footer>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment