While using Bootstrap 4 Beta (Bootstrap v4.0.0-beta), I encountered an issue with offsetting columns. Previously, I used offset-md-* and it worked fine. However, this feature has been removed in BS4 Beta as per the documentation. The new method suggested in the docs is to use .ml-auto, but when I try to use it with col-md-4, it offsets 4 columns. What I want to achieve is custom offsetting like:
**<div class="col-md-4 offset-md-2"></div>**
I attempted to use:
**<div class="col-md-4 ml-md-2"></div>**
but it did not work. Is this a bug or is there another way to accomplish this?
For more information on offsetting columns, refer to the official documentation at https://getbootstrap.com/docs/4.0/layout/grid/#offsetting-columns and view the screenshot at https://i.sstatic.net/GNByA.jpg