我倾向于响应式设计,我遇到了这个问题。
下图显示全部
下面是我正在使用的代码的检查
<doctype html>
<html>
<head>
<title>Test</title>
<style>
#container{width:100%; height:700px; background:blue; -moz-box-sizing:border-box; padding:10px;}
#box{width:60%; height:70px; background:black;}
#content{width:70%; height:600px; float:left; background:green; margin-top:10px;}
#aside{width:30%; height:800px; float:none; clear:right; background:yellow;}
</style>
</head>
<body>
<div id="container">
<div id="box">
</div>
<div id="content">
</div>
<div id="aside">
</div>
</div>
</body>
</html>
答案 0 :(得分:0)
你去吧
#container {width:100%; min-height:700px; background:blue; -moz-box-sizing:border-box; padding:10px;}
#box {width:60%; height:70px; background:black;}
#content {width:70%; height:600px; float:left; background:green; margin-top:10px;}
#aside {width:30%; height:800px; float:none; clear:both; background:yellow;}
你需要明确:两者;不仅清楚:对;
答案 1 :(得分:0)
#container{
width:100%;
height:700px;
background:blue;
box-sizing:border-box;
padding:10px;
}
#box{
width:60%;
height:70px;
background:black;
}
#content{
width:70%;
height:600px;
background:green;
margin-top:10px;
float:left;
}
#aside{
width:30%;
height:800px;
background:yellow;
float:right;
}
@media (max-width: 400px) {
#content,#aside{
display:block;
float:none;
}
#aside{
margin-top:20px;
}
}
答案 2 :(得分:-1)
从旁边删除float:right
时,请添加clear:left
。
P.S。如果没有任何东西浮动,你就不需要明确:正确
答案 3 :(得分:-1)
使用NO浮标解决方案:
body{margin:0;min-width:500px;}
#container{color:white;width:100%; height:700px; background:blue;padding:10px}
#box{width:60%; height:70px; background:black;margin-bottom:10px}
#content{width:60%; height:300px;background:lightgreen;margin-bottom:10px}
#aside{position:absolute;right:0;top:0;width:30%; height:400px;background:green;margin:10px 10px 0 0}
@media(max-width: 500px){#aside{position:static}}