14

Bootstrap 4 offset not working how can I solve it ?I have tried many times it's not behaving like the previous bootstrap please help me!my question is how can i find offset in this new version of bootstrap ?

Kumar Shaikat Bala
  • 171
  • 1
  • 1
  • 4
  • 2
    Could you please show exactly what your error is? Your question is very vague. – liam Aug 14 '17 at 18:01
  • there is no offset class! – Kumar Shaikat Bala Aug 14 '17 at 18:03
  • If that is the issue, show that in your question. – liam Aug 14 '17 at 18:04
  • my question is how can i find offset in this new version of bootstrap ??am i clear to you !please download the new bootstrap then try to use col-md-offset then you will understand everything ! – Kumar Shaikat Bala Aug 14 '17 at 18:07
  • Ok. Can you please **edit** your **question** above so that it includes more **detail** about your issue – liam Aug 14 '17 at 18:09
  • I have edited it now help me to solve the problem please give me a proper solution ! – Kumar Shaikat Bala Aug 14 '17 at 18:22
  • Could you please provide an example of your error. An error message? – liam Aug 14 '17 at 18:23
  • Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap ng Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
    – Kumar Shaikat Bala Aug 14 '17 at 18:39
  • In your question, add that to your question – liam Aug 14 '17 at 18:40

1 Answers1

68

Updated 2018

Column offsets have been restored as of Beta 2

The offset classes are offset-(breakpoint)-*


Original answer (Bootstrap 4 Beta 1)

Offset, push, pull no longer exist in Bootstrap 4 beta so you must use auto-margins.

<div class="row">
    <div class="col-4 mx-auto">
        I'm centered and offset 4 columns
    </div>
</div>

https://www.codeply.com/go/gIVefoBaAm


Also see: Offsetting columns is not working (Bootstrap v4.0.0-beta)

Carol Skelly
  • 351,302
  • 90
  • 710
  • 624