Urara-Blog/urara/2022-12-12-waterfall/+page.md
2025-03-22 17:04:42 +08:00

763 B

title created summary tags
瀑布流图片的简单实现 2022-12-12 Simple implementation of a waterfall flow picture
CSS

瀑布流图片又被称为 Masonry Layout, Waterfall Layout

HTML

<div>
  <img />
  <img />
  <img />
  <img />
</div>

CSS

div {
  /*在容器内设置栏数*/
  column-count: n;

  /*垂直间距*/
  column-gap: 0;

  /*在间隔中加点线*/
  column-rule: dotted;
}

img {
  /*防止单个元素分栏*/
  break-inside: avoid;
}

元素是从上到下竖直排列的1