Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 28th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. CSS two column layout with constant sidebar width
  2. div{
  3.     height:80px;
  4.     background:red;
  5. }
  6. .fixed{
  7.     float:right;
  8.     margin-left:20px;
  9.     width:200px;
  10. }
  11. .dynamic{
  12.     background:green;
  13.     overflow:hidden;
  14. }
  15.        
  16. <div id="sidebar" style="float:right; width:200px;">
  17. <div id="content" style="margin-right:220px">
  18.     main content
  19. </div>