Advertisement
Guest User

Untitled

a guest
Sep 14th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.20 KB | None | 0 0
  1. #header {
  2.     background-color:#f3339b;
  3. }
  4.  
  5. #menu {
  6.     background-color:#4f6138;
  7. }
  8.  
  9. #content {
  10.     background-color:#2b7eb8;
  11. }
  12.  
  13. #aside {
  14.     background-color:#00e3ac;
  15. }
  16.  
  17. #footer {
  18.     background-color:#3a3a3a;
  19. }
  20.  
  21. /*case 1
  22. #header {
  23.     float:left;
  24.     width:70%;
  25.     min-height:50px;
  26. }
  27.  
  28. #menu {
  29.     float:left;
  30.     width:30%;
  31.     min-height:50px;
  32. }
  33.  
  34. #content {
  35.     clear:left;
  36.     float:left;
  37.     width:80%;
  38.     min-height:50px;
  39. }
  40.  
  41. #aside {
  42.     float:right;
  43.     width:20%;
  44.     min-height:50px;
  45. }
  46.  
  47. #footer {
  48.     clear:both;
  49.     width:100%;
  50.     min-height:50px;
  51. }*/
  52.  
  53. /*case 2
  54. #header {
  55.     float:left;
  56.     width:100%;
  57.     min-height:50px;
  58. }
  59.  
  60. #menu {
  61.     clear:left;
  62.     float:left;
  63.     width:20%;
  64.     min-height:50px;
  65. }
  66.  
  67. #content {
  68.     float:left;
  69.     width:60%;
  70.     min-height:50px;
  71. }
  72.  
  73. #aside {
  74.     float:right;
  75.     width:20%;
  76.     min-height:50px;
  77. }
  78.  
  79. #footer {
  80.     clear:both;
  81.     width:100%;
  82.     min-height:50px;
  83. }*/
  84.  
  85. /*case 3*/
  86. #header {
  87.     float:left;
  88.     width:100%;
  89.     min-height:50px;
  90. }
  91.  
  92. #menu {
  93.     clear:left;
  94.     float:left;
  95.     width:20%;
  96.     min-height:50px;
  97. }
  98.  
  99. #content {
  100.     float:right;
  101.     width:60%;
  102.     min-height:50px;
  103. }
  104.  
  105. #aside {
  106.     float:left;
  107.     width:20%;
  108.     min-height:50px;
  109. }
  110.  
  111. #footer {
  112.     clear:both;
  113.     width:100%;
  114.     min-height:50px;
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement