I'm attempting to create a layout with three columns set up as follows:
left column fixed width: 200px
right column fixed width: 300px
center column dynamic width;
Unfortunately, I'm encountering difficulty in achieving this. Here is the code I currently have:
#one {
float:left;
background-color: red;
width: 300px;
height: 20px;
}
#two {
background-color: blue;
height: 20px;
margin: 0 200px 0 300px;
}
#three {
position: relative;
background-color: yellow;
width: 200px;
height: 20px;
float: right;
}