最新回答 / Geminihope
如果你想设置main的具体宽度,则大于等于left和right的宽度。大于left和right可以显示middle,如果是等于则left和right所在的那一行就无法显示middle。如果middle的高度大于left和right,则下方可以显示
2016-03-17
已采纳回答 / 浮生若梦_0023
就把righe 标签 写在前面呀 ~ 他本来的代码 就是把 right 写在前面的! 你只需要绝对定位 left ,然后right 用margin-left:210px;就好了
2016-03-17
最新回答 / 咸鱼的日常
<...图片...>首先看这个要求,上面top,中间main颜色红色,left和right本来是在红色的main下面的,所以需要设置浮动和绝对定位,把left和right浮动到上面,然后下面有个foot,难点就在不改变<...code...>right和left的顺序的前提下,实现如图所示的布局,所以单一的float已经不行了,需要用到绝对定位。完整代码如下所示,你先理解理解,当然我的方法不是唯一的,也有其他方法能达到同样效果。<...code...>
2016-03-16
.top{width:600px;height:60px;background:gray;}
.main{width:600px;background:orange;position:relative;}
.left{ width:100px;height:300px;background:blue;position:absolute;top:0;left:0;}
.right{height:300px;background:green;margin-left:110px;}
.foot{width:600px;height:40px;background:red;}
.main{width:600px;background:orange;position:relative;}
.left{ width:100px;height:300px;background:blue;position:absolute;top:0;left:0;}
.right{height:300px;background:green;margin-left:110px;}
.foot{width:600px;height:40px;background:red;}