Answers for "text right in bootstrap"

2

bootstrap text align

<p class="text-left">Left aligned text on all viewport sizes.</p>
<p class="text-center">Center aligned text on all viewport sizes.</p>
<p class="text-right">Right aligned text on all viewport sizes.</p>

<p class="text-sm-left">Left aligned text on viewports sized SM (small) or wider.</p>
<p class="text-md-left">Left aligned text on viewports sized MD (medium) or wider.</p>
<p class="text-lg-left">Left aligned text on viewports sized LG (large) or wider.</p>
<p class="text-xl-left">Left aligned text on viewports sized XL (extra-large) or wider.</p>
Posted by: Guest on August-25-2021
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

Browse Popular Code Answers by Language