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

我使用 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

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板