I need to put element to the right side of page.
This element:
To the right side of page. Like this:
I found only pull-right
helper class, but I have been realizing, it wouldn't help me, because it based on float
. So I started research and first result in google is this result. It says, that I should use pull-right
. Well, I tried...
I tried this:
<a href="#" class="btn btn-default btn-lg pull-right" role="button"><span class="glyphicon glyphicon-plus"></span> Создать заказ</span></a>
I got this obvious result:
You can see that third heading
in upper row is displaced.
So what exactly I need to do right align any element using bootstrap api?
I understand, that I can search how to center/left/right div
and I will find some working results, but it will be not bootstrap solution.