在动画期间隐藏滚动条
CSS 仍然无法将动画设置为 `auto` 尺寸。
.dropdown {
transition: 0.2s;
height: 0;
}
.dropdown.open {
/* the height will change, but it won't animate. */
height: auto;
}
你可以尝试使用 JavaScript 技巧。Brandon Smith 概述了几个……
另一个 +1 用于 subgrid
我认为我 85% 的网格使用都属于以下两类之一……
- 我只需要一些非常基本的(可能是等宽)列,最终类似于 `grid-template-columns: repeat(3, minmax(0, 1fr));` 以确保安全。
- 实际上