.top{width:100%;height:100px;background:gray;}
.main{height:600px; width:100%; background:red;}
.left{ width:200px;background:blue;height:600px;}
.right{ width:100%;height:600px;background:green;margin-left:210px;position:absolute;}
.foot{width:100%;height:50px; background:#f63;}
.main{height:600px; width:100%; background:red;}
.left{ width:200px;background:blue;height:600px;}
.right{ width:100%;height:600px;background:green;margin-left:210px;position:absolute;}
.foot{width:100%;height:50px; background:#f63;}
.top{height:100px;width:100%;background:#999}
.main{height:600px;background:red;}
.left{width:30%;height:600px;float:left;background:blue;}
.right{width:67%;height:600px;float:right;background:yellow;}
.foot{height:100px;background:#F93}
</style>
</head>
.main{height:600px;background:red;}
.left{width:30%;height:600px;float:left;background:blue;}
.right{width:67%;height:600px;float:right;background:yellow;}
.foot{height:100px;background:#F93}
</style>
</head>
最新回答 / 人非草木
你确定图2效果中的源代码是图1吗??我原封不动的抄写了你的代码,包括你.left里的top;0这个错误也一样,但是也没达到你图2中的效果,right根本没有占满main的右边部分,你.right中设置position:absolute后,.right脱离文档流成为行内块级元素,默认宽度是文档宽度(也就是跟right这个词一样宽),而你又没有给right设置宽度,所以应该就是占不满main的,所以你的源代码不一样怎么分析啊。。。。。
2016-10-03
最新回答 / 别惹IT男
article{ float: right; margin-top: 58px;margin-right: 17px; width: 72.7083333%; background-color: #ff2f4f;}这里
2016-10-02