Is there a way I can set the right hand panel to be say 200px and for the left panel to take up the rest of the space?
At the moment the right panel appears under the left panel.
Also, if I change the parent width, the left and right panels should appear within the parent and be sized accordingly.
#left {
background-color: #ff0000;
}
#right {
float: right;
width: 180px;
margin-left: 190px;
background-color: #00FF00;
}
<div>
<div id="left">left</div>
<div id="right">right</div>
</div>