Bootstrap 3 .col-xs-offset-* doesn't work?

前端 未结 16 1598
太阳男子
太阳男子 2021-01-31 23:58

I am using bootstrap 3 grid system loved it so far and everything was working well, I am trying to use col-xs-offset-1 and doesn\'t work although .col-sm-offset-1 works. What

16条回答
  •  萌比男神i
    2021-02-01 00:43

    Its not working because col-xs-offset-* is mentioned out of the media query. if you want to use it, you have to mention all the offset (eg: class="col-xs-offset-3 col-sm-offset-2 col-md-offset-1 col-lg-offset-0")

    But this is not right, they should mention col-xs-offset-* in the media query

提交回复
热议问题