Advertisement
tolikpunkoff

2col.css

Mar 25th, 2018
631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.21 KB | None | 0 0
  1. /*Simple 2 column design (CSS)*/
  2. #header {
  3.   background: yellow;
  4. }
  5.  
  6. #sidebar {
  7.   width: 200px;
  8.   float: left;
  9.   }
  10.  
  11. #container {
  12.   width: 100%;
  13. }
  14.  
  15. #footer {
  16.   background: yellow;
  17.   clear: both;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement