📝 代码查看
使用runcode.html页面

1
查看次数
2025-12-04
创建时间
2025-12-04
最后更新
<section>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
  </section>
section {
  display: flex;
  flex-wrap: wrap;
}
section div {
  width: 200px;
  margin: 5px;
  background-color: violet;
  flex-grow: 1;
}
section div:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}
section div:nth-last-child(9) ~ div {
  height: 0;
}
暂无JavaScript代码

👁️ 实时预览