Answers for "bootstrap light color code"

3

bootstrap primary color code

background-color:#007bff;;
Posted by: Guest on April-29-2021
-1

bootstrap bg-light color code

/* class bg-light color code is---*/
background-color:#f8f9fa;
Posted by: Guest on October-04-2020
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