Answers for "how to change the color in bootstrap 5"

CSS
2

change bootstrap background color

<style type="text/css">
   body { background: navy !important; } /* Adding !important forces the browser to overwrite the default style applied by Bootstrap */
</style>
Posted by: Guest on July-25-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

Code answers related to "how to change the color in bootstrap 5"

Browse Popular Code Answers by Language