0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

Add a comment to follow-up on #17756

This commit is contained in:
Mark Otto 2016-01-07 00:30:49 -08:00
parent af13a97d51
commit dfae3d46e4

View File

@ -46,6 +46,9 @@
@mixin make-col-span($size, $columns: $grid-columns) { @mixin make-col-span($size, $columns: $grid-columns) {
@if $enable-flex { @if $enable-flex {
flex: 0 0 percentage($size / $columns); flex: 0 0 percentage($size / $columns);
// Add a `max-width` to ensure content within each column does not blow out
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
// do not appear to require this.
max-width: percentage($size / $columns); max-width: percentage($size / $columns);
} @else { } @else {
width: percentage($size / $columns); width: percentage($size / $columns);