91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css如何使用subgrid

發布時間:2022-03-17 11:10:54 來源:億速云 閱讀:285 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“css如何使用subgrid”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“css如何使用subgrid”這篇文章吧。

subgrid

1. 基本概念

作為 CSS Grid Layout Module 2 規范的一部分,subgrid 允許元素在行軸或列軸上繼承其父元素的網格。subgrid 對于解決各種用戶界面挑戰非常有用。

例如,以下面這個帶有標題的圖像為例。標題的長度各不相同,使用 subgrid 可以直接讓它們對齊,而無需設置固定的高度。

css如何使用subgrid

2. 使用方法

首先將父元素設置為grid布局,將子元素的“grid-template-columns”或“grid-template-rows”屬性設置為 subgrid:

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
}

.grid > figure {
    display: grid;
    grid-template-rows: subgrid;
}

.grid figcaption {
    grid-row: 2;
}

實現效果:

css如何使用subgrid

完整代碼:

html:

<div class="grid">
  <figure>
    <img src='https://images.unsplash.com/photo-1633083018029-bd1d4d52cb19?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTY0NTE5NTYyMw&ixlib=rb-1.2.1&q=80&w=400' alt='Bluetit'>
    <figcaption>A colourful mix of blue, yellow, white and green makes the blue tit one of our most attractive and most recognisable garden visitors.</figcaption>
  </figure>
  <figure>
    <img src='https://images.unsplash.com/photo-1619976302135-5efbc2a7785a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTY0NTE5NTY4NA&ixlib=rb-1.2.1&q=80&w=400' alt='Robin'>
    <figcaption>Robins sing nearly all year round and despite their cute appearance, they are aggressively territorial and are quick to drive away intruders.</figcaption>
  </figure>
  <figure>
    <img src='https://images.unsplash.com/photo-1623627733740-4724cb1fe84e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTY0NTE5NTc4NQ&ixlib=rb-1.2.1&q=80&w=400' alt='Chaffinch'>
    <figcaption>The chaffinch is one of the most widespread and abundant bird in Britian and Ireland.</figcaption>
  </figure>
</div>

CSS:

* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: max(1rem, 3vw);
}

figure {
  margin: 0;
  display: grid;
/*  grid-template-rows: subgrid; */
/*  grid-row: 1 / 3; */
}

img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  grid-row: 1 / 3;
  grid-column: 1;
}

figcaption {
  padding: 1rem;
  grid-column: 1;
  grid-row: 2;
  background: hsl(0 0% 0% / 0.6);
  color: white;
}

.grid {
  display: grid;
  max-width: 80rem;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

@media (min-width: 62em) {
  .grid {
    grid-template-rows: 1fr auto;
  }
  
  figure {
    grid-template-rows: subgrid;
    grid-row: 1 / 3;
  }
}


3. 當前狀態

值得注意的是,自 2019 年以來,Firefox 已經支持了 subgrid,但近三年后還沒有其他瀏覽器跟進。有跡象表明 Chromium 團隊已經開始著手實現它,所以可能有幸在今年看到它登陸 Chrome 和 Edge。

以上是“css如何使用subgrid”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宾川县| 庄河市| 开江县| 高安市| 博兴县| 邹平县| 临安市| 专栏| 拉萨市| 鄄城县| 河西区| 开封市| 铁岭县| 台山市| 鸡泽县| 古丈县| 台北县| 枣阳市| 南江县| 曲水县| 鄯善县| 吐鲁番市| 耒阳市| 铜川市| 安康市| 基隆市| 舟曲县| 油尖旺区| 开江县| 华容县| 侯马市| 太保市| 修文县| 宁安市| 页游| 黑水县| 高州市| 宜春市| 皮山县| 瑞金市| 乌鲁木齐市|