ตู้คอนเทนเนอร์
คอนเทนเนอร์เป็นส่วนประกอบพื้นฐานของ Bootstrap ที่บรรจุ รอง และจัดแนวเนื้อหาของคุณภายในอุปกรณ์หรือวิวพอร์ตที่กำหนด
ทำงานอย่างไร
คอนเทนเนอร์เป็นองค์ประกอบเลย์เอาต์พื้นฐานที่สุดใน Bootstrap และจำเป็นเมื่อใช้ระบบกริดเริ่มต้นของเรา คอนเทนเนอร์ใช้เพื่อบรรจุ รอง และ (บางครั้ง) จัดกึ่งกลางเนื้อหาภายในคอนเทนเนอร์ แม้ว่าคอนเทนเนอร์จะซ้อนกันได้ แต่เลย์เอาต์ส่วนใหญ่ไม่ต้องการคอนเทนเนอร์ที่ซ้อนกัน
Bootstrap มาพร้อมกับคอนเทนเนอร์สามแบบ:
.container
ซึ่งตั้งค่า amax-width
ที่จุดพักตอบสนองแต่ละจุด.container-{breakpoint}
ซึ่งwidth: 100%
จนถึงจุดพักที่กำหนด.container-fluid
ซึ่งเป็นwidth: 100%
จุดพักทั้งหมด
ตารางด้านล่างแสดงให้เห็นว่าคอนเทนเนอร์แต่ละคอนเทนเนอร์max-width
เปรียบเทียบกับของจริง อย่างไร .container
และ.container-fluid
ในแต่ละเบรกพอยต์
ดูการใช้งานจริงและเปรียบเทียบในตัวอย่างกริดของ เรา
เล็กพิเศษ
<576px
|
เล็ก
≥576px
|
ปานกลาง
≥768px
|
ใหญ่
≥992px
|
X-Large
≥1200px
|
XX-ใหญ่
≥1400px
|
|
---|---|---|---|---|---|---|
.container |
100% | 540px | 720px | 960px | 1140px | 1320px |
.container-sm |
100% | 540px | 720px | 960px | 1140px | 1320px |
.container-md |
100% | 100% | 720px | 960px | 1140px | 1320px |
.container-lg |
100% | 100% | 100% | 960px | 1140px | 1320px |
.container-xl |
100% | 100% | 100% | 100% | 1140px | 1320px |
.container-xxl |
100% | 100% | 100% | 100% | 100% | 1320px |
.container-fluid |
100% | 100% | 100% | 100% | 100% | 100% |
คอนเทนเนอร์เริ่มต้น
คลาส เริ่มต้นของเรา.container
คือคอนเทนเนอร์แบบตอบสนองและมีความกว้างคงที่ ซึ่งหมายถึงการmax-width
เปลี่ยนแปลงที่จุดพักแต่ละจุด
<div class="container">
<!-- Content here -->
</div>
ภาชนะตอบสนอง
คอนเทนเนอร์ที่ตอบสนองช่วยให้คุณสามารถระบุคลาสที่มีความกว้าง 100% จนกว่าจะถึงเบรกพอยต์ที่ระบุ หลังจากนั้นเราจะใช้max-width
s กับเบรกพอยต์ที่สูงขึ้นแต่ละจุด ตัวอย่างเช่น.container-sm
มีความกว้าง 100% เพื่อเริ่มต้นจนกว่าจะถึงsm
จุดเบรกพอยต์ ซึ่งจะขยายขนาดด้วย, md
, lg
, xl
และxxl
<div class="container-sm">100% wide until small breakpoint</div>
<div class="container-md">100% wide until medium breakpoint</div>
<div class="container-lg">100% wide until large breakpoint</div>
<div class="container-xl">100% wide until extra large breakpoint</div>
<div class="container-xxl">100% wide until extra extra large breakpoint</div>
ภาชนะบรรจุของเหลว
Use .container-fluid
for a full width container, spanning the entire width of the viewport.
<div class="container-fluid">
...
</div>
Sass
As shown above, Bootstrap generates a series of predefined container classes to help you build the layouts you desire. You may customize these predefined container classes by modifying the Sass map (found in _variables.scss
) that powers them:
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1140px,
xxl: 1320px
);
In addition to customizing the Sass, you can also create your own containers with our Sass mixin.
// Source mixin
@mixin make-container($padding-x: $container-padding-x) {
width: 100%;
padding-right: $padding-x;
padding-left: $padding-x;
margin-right: auto;
margin-left: auto;
}
// Usage
.custom-container {
@include make-container();
}
For more information and examples on how to modify our Sass maps and variables, please refer to the Sass section of the Grid documentation.