Guest User

Untitled

a guest
Jun 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Absolute positions</title>
  5. <style type="text/css">
  6. body {
  7. background-color: blue;
  8. }
  9. .left50Only {
  10. position: absolute;
  11. left: 50%;
  12. width: 100px;
  13. height: 100px;
  14. background-color: yellow;
  15. }
  16. .left50WithTransform {
  17. position: absolute;
  18. left: 50%;
  19. transform: translateX(-50%);
  20. width: 100px;
  21. height: 100px;
  22. top: 150px;
  23. background-color: red;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="left50Only"></div>
  29. <div class="left50WithTransform"></div>
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment