Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <div class="a"></div>
  2. <div class="test">
  3. conteudo
  4. </div>
  5.  
  6. * {
  7. margin: 0;
  8. padding: 0;
  9. box-sizing :border-box;
  10. }
  11.  
  12. .a {
  13. background: red;
  14. height: 100px;
  15. width: 100px;
  16. }
  17.  
  18.  
  19. .test {
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. height: 100px;
  24. width: 100px;
  25. position: relative;
  26. }
  27.  
  28. .test:before {
  29. content: '';
  30. height: 50%;
  31. width: 100%;
  32. display: block;
  33. z-index: -1;
  34. position: absolute;
  35. background: red;
  36. top: 0;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement