What it used to look like:
<div class="row">
<div class="col-sm-2 col-sm-offset-3"> ... </div>
</div>
This is what it looks like now:
<div class="row">
<div class="col-xs-2 offset-xs-3"> ... </div>
</div>
After updating to Bootstrap v4 Beta, the offset-xs-3
doesn't seem to be working anymore. More information can be found at: https://getbootstrap.com/docs/4.0/layout/grid/#offsetting-columns.
Is there a different way to offset columns by a specified amount in v4 Beta?
View an example here: https://codepen.io/Deka87/pen/prVLyE