@@ -115,7 +115,7 @@ Responsive containers are new in Bootstrap v4.4. They allow you to specify a con
115
115
wide (fluid) until particular breakpoint is reached at which point a ` max-width ` is applied. For
116
116
example, setting prop ` fluid ` to ` 'md' ` will render a container that is 100% wide to start until the
117
117
` 'md' ` breakpoint is reached, at which point it will remain at that breakpoint's container
118
- ` max-width ` .
118
+ ` max-width ` until the next breakpoint is reached .
119
119
120
120
``` html
121
121
<b-container fluid =" sm" >
@@ -135,6 +135,9 @@ example, setting prop `fluid` to `'md'` will render a container that is 100% wid
135
135
Setting the fluid prop to a breakpoint name translates to the Bootstrap class
136
136
` .container-{breakpoint} ` .
137
137
138
+ Refer to the [ Grid options section] ( #grid-options ) table below for the default container width
139
+ values.
140
+
138
141
## Rows ` <b-row> ` and ` <b-form-row> `
139
142
140
143
Rows are wrappers for [ columns] ( #columns-b-col ) . Each column has horizontal padding (called a
@@ -242,6 +245,23 @@ See how aspects of the Bootstrap grid system work across multiple devices with a
242
245
[ SCSS variables] ( /docs/reference/theming ) , and (if also using custom breakpoint names), via the
243
246
BootstrapVue [ global configuration] ( /docs/misc/settings ) .
244
247
248
+ ### Container sizes
249
+
250
+ The following table outlines the default container maximum widths at the various breakpoints. These
251
+ may vary if you are using custom themed Bootstrap v4 SCSS/CSS.
252
+
253
+ | Container type | Extra small ` <576px ` | Small ` ≥576px ` | Medium ` ≥768px ` | Large ` ≥992px ` | Extra large ` ≥1200px ` |
254
+ | -------------- | -------------------- | -------------- | --------------- | -------------- | --------------------- |
255
+ | _ default_ | ` 100% ` | ` 540px ` | ` 720px ` | ` 960px ` | ` 1140px ` |
256
+ | ` fluid ` | ` 100% ` | ` 100% ` | ` 100% ` | ` 100% ` | ` 100% ` |
257
+ | ` fluid="sm" ` | ` 100% ` | ` 540px ` | ` 720px ` | ` 960px ` | ` 1140px ` |
258
+ | ` fluid="md" ` | ` 100% ` | ` 100% ` | ` 720px ` | ` 960px ` | ` 1140px ` |
259
+ | ` fluid="lg" ` | ` 100% ` | ` 100% ` | ` 100% ` | ` 960px ` | ` 1140px ` |
260
+ | ` fluid="xl" ` | ` 100% ` | ` 100% ` | ` 100% ` | ` 100% ` | ` 1140px ` |
261
+
262
+ Refer to the [ Containers ` <b-container> ` section] ( #containers-b-container ) section above for
263
+ additional information
264
+
245
265
## Auto-layout columns
246
266
247
267
Utilize breakpoint-specific column classes for easy column sizing without an explicit numbered prop
0 commit comments