如何用div将页面划分为上中下三部分,其中中间部分又分为左中右三部分...
发布网友
发布时间:2022-04-23 09:42
我来回答
共1个回答
热心网友
时间:2022-04-20 22:08
<div style="width:100% auto; border:1px">
<div id="top" style="height:20px; background:pink">头部</div>
<div id="middle" style="height:500px; width:100%">
<div id="left" style="width:20%; background:red; height:500px; float:left;">左边</div>
<div id="zhong" style="width:49.9%; background:yellow; height:500px; float:left">中间</div>
<div id="right" style="width:30%; background:green; height:500px ;float:left">右边</div>
</div>
<div id="button" style="width:100%; height:30px; background:black">底部</div>
</div>
基本布局就是这样子,你可以根据自己的需求进行修改