私は3列レイアウト作成しようとしている:私はこれが動作するように見えることはできません修正左右の列、動的な中央の列
left-column fixed width: 200px
right-column fixed width: 300px
center-column dynamic width;
を。ここで私はこれまで持っているものです。
#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;
}