Advertisement
GraionDilach

Untitled

Feb 19th, 2014
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.59 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. #sarga{
  5. background-color: yellow;
  6. width: 200px;
  7. height: 200px;
  8. border: 5px #ff0000 solid;
  9. margin-left: 800px;
  10. margin-top: 130px;
  11. position: absolute;
  12. }
  13. #zod{
  14. background-color: green;
  15. width: 200px;
  16. height: 200px;
  17. border: 5px  #964B00 solid;
  18. left: 100px;
  19. top: 130px;
  20. position: absolute;
  21. }
  22. #kek{
  23. background-color: blue;
  24. width: 100px;
  25. height: 100px;
  26. border: 5px brown solid;
  27. left: -30px;
  28. top: -30px;
  29. position: absolute;
  30. z-index: -1;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div id="sarga">
  36. <div id="kek">
  37. </div>
  38. </div>
  39. <div id="zod">
  40. </div>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement