Guest User

Untitled

a guest
Aug 14th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <style>
  2. .heart {
  3. position: absolute;
  4. margin: auto;
  5. top: 0;
  6. right: 0;
  7. bottom: 0;
  8. left: 0;
  9. background-color: pink;
  10. height: 50px;
  11. width: 50px;
  12. }
  13. .heart::before {
  14. content: "";
  15. background-color: red;
  16. border-radius: 50%;
  17. position: absolute;
  18. width: 50px;
  19. height: 50px;
  20. top: -25px;
  21. left: 0px;
  22. }
  23. </style>
  24. <div class = "heart"></div>
Add Comment
Please, Sign In to add comment