html5+ css3 平均分配各列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html5+ css3 平均分配各列相关的知识,希望对你有一定的参考价值。
我现在想实现,平均分配列,每行四列。但现在box-sizing对UL标签的padding属性起作用,对li 的margin属性不起作用,请问应该怎么解决一下这样的问题?
<!doctype html>
<html>
<head>
<meta charset="gb2312">
<title>无标题文档</title>
<style type="text/css">
body, ul, li
margin: 0px;
padding: 0px;
ul
background-color: #999;
height: 140px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 0px 10px;
li
background-color: #CCC;
list-style-type: none;
margin: 10px 0px 10px 10px;
height: 50px;
float: left;
width: 25%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
li:nth-child(1)
margin-left: 0px;
li:nth-child(5)
margin-left: 0px;
</style>
</head>
<body>
<ul>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
</ul>
</body>
</html>
<html>
<head>
<meta charset="gb2312">
<title>无标题文档</title>
<style type="text/css">
body, ul, li
margin: 0px;
padding: 0px;
ul
background-color: #999;
height: 140px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 0px 10px;
li
background-color: #CCC;
list-style-type: none;
margin: 10px 0px 10px 1px;
height: 50px;
float: left;
width: 25%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
li:nth-child(1)
margin-left: -3px;
li:nth-child(5)
margin-left: -3px;
</style>
</head>
<body>
<ul>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
<li>文字</li>
</ul>
</body>
</html>
你是要这种效果么?本回答被提问者和网友采纳 参考技术B 神马用?
以上是关于html5+ css3 平均分配各列的主要内容,如果未能解决你的问题,请参考以下文章