Answers for "text-right bootstrap"

8

font weight bootstrap class

<p class="font-weight-bold">Bold text.</p>
<p class="font-weight-normal">Normal weight text.</p>
<p class="font-weight-light">Light weight text.</p>
<p class="font-italic">Italic text.</p>
Posted by: Guest on July-29-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
0

text right in bootstrap 5

<p class="text-start">Start aligned text on all viewport sizes.</p>
<p class="text-center">Center aligned text on all viewport sizes.</p>
<p class="text-end">End aligned text on all viewport sizes.</p>

<p class="text-sm-start">Start aligned text on viewports sized SM (small) or wider.</p>
<p class="text-md-start">Start aligned text on viewports sized MD (medium) or wider.</p>
<p class="text-lg-start">Start aligned text on viewports sized LG (large) or wider.</p>
<p class="text-xl-start">Start aligned text on viewports sized XL (extra-large) or wider.</p>
Posted by: Guest on September-09-2021

Browse Popular Code Answers by Language