Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <div id="global">
  2. <div id="inner"></div>
  3. </div>
  4.  
  5. #global{
  6. margin: 0px auto;
  7. width: 300px;
  8. height: 300px;
  9. position:relative;
  10. top: 0px;
  11. background-color: #ff0000;
  12. }
  13. #inner{
  14. width:100px;
  15. height: 100px;
  16. position: absolute;
  17. background-color: black;
  18. right: -50px;
  19. top: -50px;
  20. }
  21.  
  22. html{overflow-x:hidden;}
  23.  
  24. <div id="inner"></div>
  25. <div id="global">
  26. </div>
  27.  
  28. #global{
  29. margin: 0px auto;
  30. width: 300px;
  31. height: 300px;
  32. position:relative;
  33. top: 0px;
  34. background-color: #ff0000;
  35. z-index: -1;
  36. }
  37. #inner{
  38. width:100px;
  39. height: 100px;
  40. position: relative;
  41. background-color: black;
  42. margin: auto;
  43. z-index: 2;
  44. left: 150px;
  45. top: 50px;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement