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
Currently there only appears to be align-items level alignment of row and their columns. Would be great to add some classes to align items along the justify-content axis.
For example:
.row-xs-justify-center {
justify-content: center;
}
<div class="row row-md-justify-center">
<div class="col-md-4">This content is centered</div>
<div class="col-md-4">This content is centered</div>
</div>
Instead of this:
<div class="row">
<div class="col-md-4 col-md-offset-2">This content is centered</div>
<div class="col-md-4">This content is centered</div>
</div>
column alignment row helpers
Would also be great to allow 'floating' of columns, eg.
justify-content row helpers
Currently there only appears to be align-items level alignment of row and their columns. Would be great to add some classes to align items along the justify-content axis.
For example:
Instead of this:
column alignment row helpers
Would also be great to allow 'floating' of columns, eg.
extra flex grid helper classes
The text was updated successfully, but these errors were encountered: