-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Responsive container-fluid #24903
Comments
You can basically do this with the existing responsive flex direction utilities example: https://codepen.io/anon/pen/RjeBMG |
Isn't that the same as just normal responsive rows? https://codepen.io/anon/pen/zPmVGJ <div class="container-fluid">
<div class="row">
<div class="col-xl">
<p class="alert alert-success">Left</p>
</div>
<div class="col-xl">
<p class="alert alert-primary">Right</p>
</div>
</div>
</div> The problem I am trying to solve is for breakpoints |
The columns changing in the CodePen are coincidental to the actual feature request I think. The idea is that we have the ability to toggle from a pixel width to a fluid one with a class. For example: <div class="container container-md-fluid">
<div class="row">...<div>
</div> This would be independent from the normal grid column classes. |
@mdo Yes this is correct. Sorry, the rows are totally coincidental. |
would love to see this addressed for v4.1. Common use case is I want a <div class="container-fluid container-md">
<div>I'm full width on small devices and contained on wider screens.</div>
</div> |
Closing since we shipped this in an earlier version with the responsive containers. |
Great, thank you! |
FEATURE REQUEST:
.container-*-fluid
DESCRIPTION: Switch to fluid layout for viewports larger than a certain size.
Use case: https://codepen.io/anon/pen/WXaoyo?editors=1100#0
Implementation for
.container-xl-fluid
:The text was updated successfully, but these errors were encountered: