这样的布局效果使用非常的频繁,也就是让多个div在一行分布,并且div于div之间的间隙是一样的。
多用在对于产品的展示之用,下面就介绍一下如何实现此中布局。
代码实例如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>web前端学习扣qun:731771211 每日分享技术,学术交流</title>
<style type="text/css">
*{
margin:0px;
padding:0px;
}
#box{
width:430px;
height:200px;
background-color:red;
overflow:hidden;
margin:100px;
}
#box ul{
width:440px;
}
#box ul li{
width:100px;
height:100px;
background-color:green;
float:left;
margin-right:10px;
list-style:none;
}
</style>
</head>
<body>
<div id="box">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</body>
</html>
原文地址:https://blog.51cto.com/14284898/2390056
时间: 2024-10-28 02:10:00