看看上面的css是如何使用grid实现 .waterfall.item:nth-of-type(3n+1){grid-row: auto / span5; } 上述代码指定1,4,7,10...等item的高度,auto为grid自动设置该item的起始位置,span 5则指定该item的高度为grid-auto-rows * 5,grid-auto-rows在CSS的设定中为20px,在源码中我做了说明,它是一个基础高度...