作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正如您在图像中看到的,每个框的高度都不同,有些框的宽度是原来的两倍。
是否可以仅使用 CSS 创建砖石风格的布局?
最佳答案
有了 css3 支持,你可以这样做:
.container {
-moz-column-count: 2;
-moz-column-gap: 10px;
-webkit-column-count: 2;
-webkit-column-gap: 10px;
column-count: 2;
column-gap: 10px;
width: 360px;
}
.container div {
display: inline-block;
width: 100%;
background-color: red;
}
由于不支持 css3,你不得不求助于 js。
关于html - 仅使用 CSS 的砌体式布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41966723/
我是一名优秀的程序员,十分优秀!