Align div right in Bootstrap 3

后端 未结 5 1460
刺人心
刺人心 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:25

    Do you mean something like this:

    HTML

    left content
    text
    right content

    CSS

    .yellow-background {
      background: blue;
    }
    
    .pull-right {
      background: yellow;
    }
    

    A full example can be found on Codepen.

提交回复
热议问题