CSS grid-template-column - 避免在新行中使用单列
P粉691958181
P粉691958181 2024-03-28 17:05:36
0
1
301

我使用 css 网格来调整列,并在它们不适合时将它们移动到新行。这是解释一切的代码:

.tiles-container {
  display: grid;
  grid-gap: 6rem;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 2fr));
}

a {
  background: red;
  height: 100px;
}
<div class="tiles-container">
  <a></a>
  <a></a>
  <a></a>
  <a></a>
</div>

grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 2fr));

现在,我想避免的是仅将一(单个)列移动到新行。相反,它会更早崩溃并将 2 列移动到一起。

为了更直观地解释它,这是可以接受的:

█ █ █ █

也可以:

█ █ █

██

也可以:

██

██

这是不可接受的:

█ █ █

我想在这里避免不必要的媒体查询。 这是我的代码:https://jsfiddle.net/tucado/0czokyxa/3/

P粉691958181
P粉691958181

全部回复(1)
P粉156415696

如果有人遇到同样的问题,这里是解决方案:https://jsfiddle.net/ tucado/0czokyxa/5/

和CSS:

.tiles-container {
    /* first breakpoint*/
    --w1:1200px;
    --n:6;
    /* second breakpoint*/
    --w2:800px;
    --m:4;
    /* third breakpoint*/
    --w3:400px;
    --p:2;

    display:grid;
    grid-template-columns:
      repeat(auto-fill,
        minmax(clamp(clamp(clamp(  
              100%/(var(--n) + 1) + 0.1%,
                (var(--w1) - 100%)*1000,
              100%/(var(--m) + 1) + 0.1%), 
                (var(--w2) - 100%)*1000,
              100%/(var(--p) + 1) + 0.1%), 
                (var(--w3) - 100%)*1000,
              100%), 1fr));
    gap:10px;
    border:1px solid;
    overflow:hidden;
    margin:5px;
    resize:horizontal;


  }

  .tiles-container > a {
    height:100px;
    background:red;
  }

谢谢@Temani-Afif

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板