1.column-count 属性规定元素该当被分隔的列数
2.column-gap 属性规定列之间的间隔
2.column-rule 属性设置列之间的宽度、样式和颜色规则。
CSS3 多列属性的兼容性:Internet Explorer 10 和 Opera 支持多列属性,Firefox 须要前缀 -moz-,Chrome 和 Safari 须要前缀 -webkit-,特殊把稳:Internet Explorer 9 以及更早的版本不支持多列属性。
实现css两端对齐的例子:用column-count定义工具的列数,例子中有4个p(即4个模块),那么就定义为4列,再用column-gap定义了工具中列与列的间距,间距不能设置为百分比,但是只能用px,详细的看下面的代码:
<!Doctype html>
<html>
<head>
<meta http-equiv=\"大众Content-Type\公众 content=\公众text/html; charset=gbk2312\"大众/>
<title>实现css两端对齐</title>
<style type=\"大众text/css\"大众>
{margin:0;padding:0;}
.box{
margin:100px 0;
-webkit-column-count:4;-moz-column-count:4;column-count:4;
-webkit-column-gap:30px;-moz-column-gap:30px;column-gap:30px;
}
.box p{
height:30px;
line-height:30px;
text-align:center;
border:1px solid red;
color:#000;
font-size:12px;
}
</style>
</head>
<body>
<div class=\"大众box\公众>
<p>第1列</p>
<p>第2列</p>
<p>第3列</p>
<p>第4列</p>
</div>
</body>
</html>
点击查看css两端对齐效果(http://tangjiusheng.com/css3/column.html)
除注明外的文章,均为来源:汤久生博客,转载请保留本文地址!
原文地址:http://tangjiusheng.com/css3/130.html