本示範使用容器查詢來建立內建函式的回應式卡片。在較窄的單欄版面配置中,較寬的資訊卡採用雙欄版面配置。
如要建立容器,請先在父項上設定包含:
/* Set containment on parent */
.container {
container-name: myContainer;
container-type: inline-size;
/* You can also use the shorthand property `container: myContainer / inline-size`.
}
您可以設定部分基本樣式:
.desc {
display: none;
}
.card {
text-align: center;
padding: 0.5rem;
}
然後,根據該父項容器的內嵌寬度更新這些基本樣式:
/* 2-column grid layout at >=350px */
@container (min-width: 350px) {
.card {
display: grid;
grid-template-columns: 40% 1fr;
align-items: center;
gap: 1rem;
text-align: left;
}
}
/* Display description at >=500px */
@container (min-width: 500px) {
.desc {
display: block;
}
}
也就是說,如果您在 UI 的不同部分建立完全相同的元件,就能利用自己的邏輯調整容器的大小,以及配合容器調整大小。相較於只有全域可視區域,您可以更妥善地控制資訊卡的版面配置。以下範例說明如何將容器查詢資訊卡置於不同欄寬度的格線中:
探索這個程式碼研究室的示範內容
<div class="container">
<div class="card">
<div class="visual"></div>
<div>
<div class="meta">
<h1>Card Title Here</h1>
<h2 class="time">Subtitle</h2>
</div>
<p class="desc">Here is some descriptive text to support the main idea of the card. It will be hidden when there is less inline space.</p>
<button>I'm a button</button>
</div>
</div>
</div>
/* Set containment on parent */
.container {
container: inline-size;
width: 100%;
max-width: 750px;
margin: 0 auto;
}
/* Base Styles */
.visual {
aspect-ratio: 1 / 1;
}
.desc {
display: none;
}
.card {
text-align: center;
padding: 0.5rem;
}
/* Responsive styles */
/* 2-column grid layout at >=350px */
@container (min-width: 350px) {
.card {
display: grid;
grid-template-columns: 40% 1fr;
align-items: center;
gap: 1rem;
text-align: left;
}
}
/* Display description at >=500px */
@container (min-width: 500px) {
.desc {
display: block;
}
}