HTML/CSS编写一个三栏布局,左右200px,中间随窗口大小变动

来源:互联网 发布:微软网页编辑软件 编辑:程序博客网 时间:2024/05/14 18:22
<body>
<div style="float:left;width:200px;height:400px; background-color:#0FF;"></div>
<div style="float:right;width:200px;height:400px; background-color:#FF9;"></div>
<div style="width:100%-401px;;height:400px; background-color:#CC3;"></div>
</body>
原创粉丝点击