I want a CSS layout , two column left one is 40% and right the rest (60%) ... but I also want the left one not to gwt smaller than say 200 pixels when the browser is resized. I use absolute positioning. My css is like this
#LeftSection
{
position: fixed;
float: left;
width: 40%;
height: 100%;
background-color: #CCCCCC;
}
#RightSection
{
position: absolute;
margin-left: 40%;
width: 60%;
height: 100%;
background-color: #333333;
}