Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. /**
  2. * Vertical centering - absolute positioning method
  3. */
  4.  
  5. main {
  6. position: absolute;
  7. top: 50%;
  8. left: 50%;
  9. margin-top: -3em; /* 6/2 = 3 */
  10. margin-left: -9em; /* 18/2 = 9 */
  11. width: 18em;
  12. height: 6em;
  13. padding: 1em 1.5em;
  14. box-sizing: border-box;
  15. background: #655;
  16. color: white;
  17. text-align: center;
  18. }
  19.  
  20. h1 {
  21. margin: 0 0 .2em;
  22. font-size: 150%;
  23. }
  24.  
  25. p {
  26. margin: 0;
  27. }
  28.  
  29. body {
  30. background: #fb3;
  31. font: 100%/1.5 sans-serif;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement