- CSS two column layout with constant sidebar width
- div{
- height:80px;
- background:red;
- }
- .fixed{
- float:right;
- margin-left:20px;
- width:200px;
- }
- .dynamic{
- background:green;
- overflow:hidden;
- }
- <div id="sidebar" style="float:right; width:200px;">
- <div id="content" style="margin-right:220px">
- main content
- </div>