CSS3多列问题
直接上代码
<style>
.box {
width: 500px;
height: 500px;
column-count: 5;/*设置分成几列*/
column-gap: 40px;/*列之间的间隔:*/
column-rule: 1px dashed #ff0000;/*列间隔线的宽度、样式和颜色规则。*/
}
</style>
</head>
<body>
<div class="box">
<p>是谁的心啊是谁的心啊是谁的心啊是谁的心啊
是谁的心啊是谁的心啊是谁的心啊是谁的心啊
是谁的心啊是谁的心啊是谁的心啊是谁的心啊
是谁的心啊是谁的心啊是谁的心啊是谁的心啊
</p>
</div>
</body>
column-rule 样式模拟器