Answers for "bootstrap class name for red text"

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
4

bootstrap color a div

use something like :
<div class="container alert alert-success">
   <div class="row">
      <div class="col">I'm your content inside the grid!</div>
   </div>
</div>
Posted by: Guest on March-15-2020

Browse Popular Code Answers by Language