Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.82 KB | None | 0 0
  1. div.fioletowy{
  2. border-style: solid;
  3. background-color:purple;
  4. width:500px;
  5. height:500px;
  6. position:absolute;
  7. z-index: 1;
  8. }
  9. div.zolty{
  10. border-style: solid;
  11. background-color:yellow;
  12. width:400px;
  13. height:400px;
  14. top:50px;
  15. left:50px;
  16. right:50px
  17. bottom: 50px;
  18. position: absolute;
  19. z-index:2;
  20. }
  21. div.zielony{
  22. border-style: solid;
  23. background-color:green;
  24. width:300px;
  25. height:300px;
  26. top:100px;
  27. left:100px;
  28. right:100px
  29. bottom: 100px;
  30. position: absolute;
  31. z-index:3;
  32. }
  33. div.niebieski{
  34. border-style: solid;
  35. background-color:blue;
  36. width:200px;
  37. height:200px;
  38. top:150px;
  39. left:150px;
  40. right:150px
  41. bottom: 150px;
  42. position: absolute;
  43. z-index:4;
  44. }
  45. div.czerwony{
  46. border-style: solid;
  47. background-color:red;
  48. width:100px;
  49. height:100px;
  50. top:200px;
  51. left:200px;
  52. right:200px
  53. bottom: 200px;
  54. position: absolute;
  55. z-index:5;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement