Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1. body
  2. {
  3.     background-color: #ff0000;
  4. }
  5.  
  6. #gora
  7. {
  8.     width: 100%;
  9.     height: 200px;
  10.     background-color: cyan;
  11.     float: left;
  12. }
  13.  
  14. #lewo
  15. {
  16.     width: 20%;
  17.     background-color: crimson;
  18.     height: 350px;
  19.     float: left;
  20. }
  21.  
  22. #prawo
  23. {
  24.     width: 20%;
  25.     background-color: lime;
  26.     min-height: 20px;
  27.     float: left;
  28. }
  29. #srodek
  30. {
  31.     width: 60%;
  32.     background-color: blue;
  33.     height: 350px;
  34.     float: left;
  35. }
  36. #dol
  37. {
  38.     width: 100%;
  39.     height: 200px;
  40.     background-color: cyan;
  41.     float: left;
  42. }
  43.  
  44. .synek
  45. {
  46.     width: 200px;
  47.     height: 200px;
  48.     float: left;
  49.     background-color: magenta;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement