.top{height:100px;background:gray;}
.main{height:400px;width:800px;background:red;margin:0 auto;}
.left{height:400px;width:250px;float:left; background:blue;}
.right{height:400px;width:530px;float:right;background:green;}
.foot{height:100px;width:800px;background:navy;margin:0 auto;clear:both;}
.main{height:400px;width:800px;background:red;margin:0 auto;}
.left{height:400px;width:250px;float:left; background:blue;}
.right{height:400px;width:530px;float:right;background:green;}
.foot{height:100px;width:800px;background:navy;margin:0 auto;clear:both;}
先加载left,后加载right涉及到js和jquery了吧?从别处抄了段过来,但还是不懂...
<script type="text/javascript">
function show(){
if($("#right").css("display") == "none") {
$("#right").show();
}
else if($("#left").css("display") == "none") {
$("#left").show();
}
}
setInterval("show()",2000)
<script type="text/javascript">
function show(){
if($("#right").css("display") == "none") {
$("#right").show();
}
else if($("#left").css("display") == "none") {
$("#left").show();
}
}
setInterval("show()",2000)
最新回答 / 慕慕2042493
310px就是题目要求的据左右列10px+右边列的300px;210px就是题目要求的左右列10px+左边列的200px;margin的像素是根据:上、右、下、左来理解的,参照案例左边要求的图样就可以理解了。
2015-07-08
.main{background:red;}
.left{width:100px;height:300px;background:blue;}
.right{height:300px;background:#9ACC99;position:absolute;top:80px;left:105px;right:0;}
.foot{height:30px;background:#FF6634;clear:both;}
.left{width:100px;height:300px;background:blue;}
.right{height:300px;background:#9ACC99;position:absolute;top:80px;left:105px;right:0;}
.foot{height:30px;background:#FF6634;clear:both;}
5-3有点坑爹啊
.left<width:200px;height:500px;background:blue;position:absolute;top:100px;>
这样left就不会被挤下去了
.left<width:200px;height:500px;background:blue;position:absolute;top:100px;>
这样left就不会被挤下去了