Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <div>
  2. I'm centered
  3. <div>
  4. I'm glued to the centered div
  5. </div>
  6. </div>
  7.  
  8. div
  9. {
  10. background-color: pink;
  11. width: 300px;
  12. height: 400px;
  13. margin: 0 auto;
  14. position: relative;
  15. }
  16. div div
  17. {
  18. width: 100px;
  19. height: 100px;
  20. background-color: cyan;
  21. left: -100px;
  22. top: 0px;
  23. position: absolute;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement