-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
/*
多列:
css3中,可以创建多列来对文本或者区域进行布局
属性:
column-count: 列的数量
column-gap: 每列间隔的距离
column-rule: 每列间隔的线及线的颜色
_/
.div5{
/_列的数量*/
-webkit-column-count: 4;
-moz-column-count: 4;
column-count: 4;
/*每列间隔距离*/
-webkit-column-gap: 50px;
-moz-column-gap: 50px;
column-gap: 50px;
/*每列间隔的线及线的颜色*/
column-rule: 2px outset lightblue;
-webkit-column-rule: 2px outset lightblue;
-moz-column-rule: 2px outset lightblue;}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels