展开全部
浮动可以让div并排,你是不是没有清理浮动
css:
<style type="text/css">
.box{ width:800px; background-color:grey; overflow:hidden;}
.left{ float:left; width:300px; height:400px; background-color:red;}
.right{ float:right; width:480px; height:400px; background-color:green;}
</style>
html:
<div class="box">
<div class="left"></div>
<div class="right"></div>
</div>
清理浮动的方法有很多种,看具体情况哪种更好,这里列举一种
css:
<style type="text/css">
.box{ width:800px; background-color:grey; overflow:hidden;}
.left{ float:left; width:300px; height:400px; background-color:red;}
.right{ float:right; width:480px; height:400px; background-color:green;}
</style>
html:
<div class="box">
<div class="left"></div>
<div class="right"></div>
</div>
清理浮动的方法有很多种,看具体情况哪种更好,这里列举一种
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询