码迷,mamicode.com
首页 > 其他好文 > 详细

如何实现多个div水平均匀排列且量两端贴壁

时间:2015-12-14 10:40:33      阅读:694      评论:0      收藏:0      [点我收藏+]

标签:

如何实现多个div水平均匀排列且量两端贴壁:
建议:尽可能的手写代码,可以有效的提高学习效率和深度。
在网页布局中,经常有这样的需求,那就是几个div水平均匀在排列在一个盒子中,并且两端div外侧紧贴盒子内壁,如下图所示:
下面先看一段代码实例:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style type="text/css"> 
.parent{ 
  width:480px; 
  height:100px; 
  border:1px solid red; 
  overflow:hidden; 
} 
.parent div{ 
  width:100px; 
  height:100px; 
  background-color:green; 
  margin-left:20px; 
  float:left; 
} 
</style> 
</head> 
<body> 
<div class="parent"> 
  <div></div> 
  <div></div> 
  <div></div> 
  <div></div> 
</div> 
</body> 
</html>

以上代码虽然均匀分布了,但是左侧由于外边距的原因,不能够贴到父元素的内壁,不能够满足我们的效果,代码修改如下:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style type="text/css"> 
.parent{ 
  width:460px; 
  height:100px; 
  border:1px solid red; 
  overflow:hidden; 
} 
.wrap{ 
  width:480px; 
  height:100px; 
  overflow:hidden 
} 
.parent .wrap div{ 
  width:100px; 
  height:100px; 
  background-color:green; 
  margin-right:20px; 
  float:right; 
} 
</style> 
</head> 
<body> 
<div class="parent"> 
<div class="wrap"> 
  <div></div> 
  <div></div> 
  <div></div> 
  <div></div> 
</div> 
</div> 
</body> 
</html>

以上代码实现了想要的效果。方法就是在水平排列的div的外层再嵌套一个div,并将此div的宽度设置为480px,这样不会导致水平排列的div出现换行。最外层的div设置宽度为460,并且将overflow属性值设置为hidden,这样就可以将右侧的margin-right区域给隐藏掉,于是实现了我们想要的效果。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=4583

更多内容可以参阅:http://www.softwhy.com/divcss/

如何实现多个div水平均匀排列且量两端贴壁

标签:

原文地址:http://www.cnblogs.com/nulifendou/p/5044352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!