作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尽量不要将jQuery脚本用于砌筑效果,因此请寻找CSS替代方案。
我正在尝试使用列数,它似乎正在工作,但没有达到预期。
因此,这些列就在那里,但是有时您可以在此示例中看到,容器中的项目有时被拆分为多个。
http://jsfiddle.net/DTcHh/3858/
#builds {
width: 100%;
}
.cols {
-moz-column-count:4;
-moz-column-gap: 3%;
-moz-column-width: 25%;
-webkit-column-count:4;
-webkit-column-gap: 3%;
-webkit-column-width: 25%;
column-count: 4;
column-gap: 3%;
column-width: 25%;
}
.item {
height: auto;
width: 100%;
}
最佳答案
我认为this是您需要的
.items {
-webkit-column-break-inside: avoid;
-o-column-break-inside: avoid;
-moz-column-break-inside: avoid;
break-inside: avoid;
}
关于css - CSS列计数导致元素拆分列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28308627/
我是一名优秀的程序员,十分优秀!