Guest User

Untitled

a guest
Dec 10th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. body {
  2. height: 100vh;
  3. margin: 0;
  4. position: relative;
  5. }
  6.  
  7. .box {
  8. display: -webkit-box;
  9. display: -ms-flexbox;
  10. display: flex;
  11. height: 100%;
  12. -webkit-box-align: center;
  13. -ms-flex-align: center;
  14. align-items: center;
  15. -webkit-box-pack: center;
  16. -ms-flex-pack: center;
  17. justify-content: center;
  18. }
  19.  
  20. .box-content {
  21. background: #333;
  22. color: #fff;
  23. padding: 20px;
  24. }
Add Comment
Please, Sign In to add comment