Hi FE !
Ai
git
前端面试题
前端小tip
  • vite
  • webpack
npm
  • vue2
  • vue3
react
GitHub
Ai
git
前端面试题
前端小tip
  • vite
  • webpack
npm
  • vue2
  • vue3
react
GitHub
  • auto-fit 和minmax去掉右侧空白

auto-fit 和minmax去掉右侧空白

/* # auto-fit 和minmax去掉右侧空白
grid-template-columns: repeat(auto-fit minmax(200px,1fr));

表示列宽至少200px 如果还有剩余空间 则分配给该列,如果剩余空间又有200px了,就多一列 */

.wrapper {
    margin:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    grid-gap:10px 20px;
    grid-auto-rows:50px;
}

Edit this page
最近更新: 2025/12/2 01:46
Contributors: qdleader
qdleader
本站总访问量 129823次 | 本站访客数 12人