Answers for "how to make text align right in bootstrap"

8

bootstrap align right

To aligning div in bootstrap you can use bootstrap classes like
1. float-left
2. float-right
3. float-none

<div class="float-left">Float left on all viewport sizes</div><br>
<div class="float-right">Float right on all viewport sizes</div><br>
<div class="float-none">Don't float on all viewport sizes</div>
Posted by: Guest on April-14-2020
2

place text in the right bootstrap

* If you need to put your text in the right most of row div.
Add the css class "text-right" (4.6) or text-end (5)


* If you need to put your item in the right most of row div. 
Add the css class ml-auto
Posted by: Guest on August-10-2021

Code answers related to "how to make text align right in bootstrap"

Browse Popular Code Answers by Language