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
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.