การสาธิตนี้ใช้คำค้นหาคอนเทนเนอร์เพื่อสร้างการ์ดภายในที่ปรับเปลี่ยนตามอุปกรณ์ การ์ดจะเปลี่ยนจากเลย์เอาต์แบบคอลัมน์เดียวที่มีขนาดเล็กลงไปเป็นเลย์เอาต์ 2 คอลัมน์เมื่อมีขนาดที่กว้างขึ้น
หากต้องการสร้างคอนเทนเนอร์ ให้ตั้งค่าการควบคุมในระดับบนสุดดังนี้
/* 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 คอมโพเนนต์ดังกล่าวก็จะสามารถใช้ตรรกะของตนเองเพื่อปรับขนาดและให้พอดีกับคอนเทนเนอร์ที่สุดได้ คุณจะควบคุมเลย์เอาต์ของการ์ดได้ดีกว่าหากมีเพียงวิวพอร์ตส่วนกลางที่ต้องพึ่งพา ตัวอย่างต่อไปนี้แสดงให้เห็นความแตกต่างนี้ โดยวางการ์ดการค้นหาคอนเทนเนอร์ในตารางกริดที่มีความกว้างของคอลัมน์ต่างกัน
สำรวจการสาธิตเกี่ยวกับ Codepen
<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;
}
}