首页 > Web开发 > 详细

最简单的css实现瀑布流布局方法

时间:2019-09-26 18:20:55      阅读:85      评论:0      收藏:0      [点我收藏+]

<body>
<style>
.parent {
width:100%;
-moz-column-count: 4;
-webkit-column-count: 4;
column-count: 4;
}
.child {
margin-bottom:20px;
-moz-page-break-inside: avoid;
-webkit-column-break-inside: avoid;
break-inside: avoid;
color:#fff;
}
.child:nth-of-type(1){ height:100px; background:#000; }
.child:nth-of-type(2){ height:120px; background:#111; }
.child:nth-of-type(3){ height:140px; background:#222; }
.child:nth-of-type(4){ height:160px; background:#333; }
.child:nth-of-type(5){ height:180px; background:#444; }
.child:nth-of-type(6){ height:200px; background:#555; }
.child:nth-of-type(7){ height:220px; background:#666; }
.child:nth-of-type(8){ height:240px; background:#777; }
</style>
<div class="parent">
<div class="child">1</div>
<div class="child">2</div>
<div class="child">3</div>
<div class="child">4</div>
<div class="child">5</div>
<div class="child">6</div>
<div class="child">7</div>
<div class="child">8</div>
</div>
</body>
————————————————
版权声明:本文为CSDN博主「汪小穆」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/w390058785/article/details/82775897

最简单的css实现瀑布流布局方法

原文:https://www.cnblogs.com/shangmao/p/11593218.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!