Align div right in Bootstrap 3

后端 未结 5 1459
刺人心
刺人心 2021-02-02 06:17

Is there a way in Bootstrap 3 to right align a div?

I am aware of the offsetting possibilitys but I want to align a formatted div to the right of its container while it

5条回答
  •  迷失自我
    2021-02-02 06:36

    Bootstrap 4+ has made changes to the utility classes for this. From the documentation:

    Added .float-{sm,md,lg,xl}-{left,right,none} classes for responsive floats and removed .pull-left and .pull-right since they’re redundant to .float-left and .float-right.

    So use the .float-right (or a size equivalent such as .float-lg-right) instead of .pull-right for your right alignment if you're using a newer Bootstrap version.

提交回复
热议问题