Answers for "how to text-white fonts in bootstrap"

CSS
59

bootstrap text color

<p class="text-primary">.text-primary</p>
<p class="text-secondary">.text-secondary</p>
<p class="text-success">.text-success</p>
<p class="text-danger">.text-danger</p>
<p class="text-warning">.text-warning</p>
<p class="text-info">.text-info</p>
<p class="text-light bg-dark">.text-light</p>
<p class="text-dark">.text-dark</p>
<p class="text-muted">.text-muted</p>
<p class="text-white bg-dark">.text-white</p>
Posted by: Guest on March-20-2020
-1

change text color in bootstrap

There are pre-defined Colors in Bootstrap. 
Learn More about their color classes in their docs section.

<p class="text-success">Success.</p>
Posted by: Guest on November-12-2021

Browse Popular Code Answers by Language