You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In IE10 the default value for flex is 0 0 auto rather than 0 1 auto as defined in the latest spec.
On smaller screens when the col-* elements start to wrap, they default to flex: 0 0 auto instead of flex: 1 0 auto and the column overflows the row since the row is display: flex and the columns have been set not to shrink.
The text was updated successfully, but these errors were encountered:
You appear to have posted a live example (https://run.plnkr.co/plunks/spvWj4U7KP6p2mXJ7Dvp/), which is always a good first step. However, according to Bootlint, your example has some Bootstrap usage errors, which might potentially be causing your issue:
line 13, column 5: E003: Found one or more .rows that were not children of a grid column or descendants of a .container or .container-fluid
We're automatically closing this issue since the original poster (or another commenter) hasn't yet responded to the question or request made to them 14 days ago. We therefore assume that the user has lost interest or resolved the problem on their own. Closed issues that remain inactive for a long period may get automatically locked.
Don't worry though; if this is in error, let us know with a comment and we'll be happy to reopen the issue.
One of the known issues on http://caniuse.com/#search=flex is that:
In IE10 the default value for flex is 0 0 auto rather than 0 1 auto as defined in the latest spec.
On smaller screens when the
col-*
elements start to wrap, they default toflex: 0 0 auto
instead offlex: 1 0 auto
and the column overflows the row since the row isdisplay: flex
and the columns have been set not to shrink.The text was updated successfully, but these errors were encountered: