Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
<MDBContainer>
<!-- Content here -->
</MDBContainer>
<MDBContainer fluid>
<!-- Content here -->
</MDBContainer>
<MDBContainer size="sm">
<!-- Content here -->
</MDBContainer>
<MDBContainer size="md">
<!-- Content here -->
</MDBContainer>
<MDBContainer size="lg">
<!-- Content here -->
</MDBContainer>
<MDBContainer size="xl">
<!-- Content here -->
</MDBContainer>
.container
, which sets a max-width at each responsive breakpoint.container-fluid
, which is width: 100% at all breakpoints.container-[breakpoint]
, which is width: 100% until the specified breakpointThe table below illustrates how each container’s max-width
compares to the original
.container
and .container-fluid
across each breakpoint.
Extra small <576px |
Small ≥576px |
Medium ≥768px |
Large ≥992px |
Extra large ≥1200px | |
---|---|---|---|---|---|
.container |
100% | 540px | 720px | 960px | 1140px |
.container-sm |
100% | 540px | 720px | 960px | 1140px |
.container-md |
100% | 100% | 720px | 960px | 1140px |
.container-lg |
100% | 100% | 100% | 960px | 1140px |
.container-xl |
100% | 100% | 100% | 100% | 1140px |
.container-fluid |
100% | 100% | 100% | 100% | 100% |