-
-
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
Need to set 'min-height: 0' for blank columns. #26975
Comments
Just to elaborate on this, it's currently set to bootstrap/scss/mixins/_grid-framework.scss Lines 8 to 14 in a194abb
Maybe someone can explain why this is done exactly and why columns may not collapse when empty? |
The grid used to be float based. If a column was empty, the height would be 0 and the column to the right would move over this column because it wouldn't take any space. The We can now safely remove this, because the new flexbox based grid doesn't have this issue. |
Before opening:
Bug reports must include:
The text was updated successfully, but these errors were encountered: