Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 713 Bytes

File metadata and controls

18 lines (14 loc) · 713 Bytes

How to change background color in Bootstrap?

You can easily change the background color in bootstrap by using .bg-* color classes

<div class="bg-primary"></div>
<div class="bg-secondary"></div>
<div class="bg-success"></div>
<div class="bg-danger"></div>
<div class="bg-warning"></div>
<div class="bg-info"></div>
<div class="bg-light"></div>
<div class="bg-dark"></div>

The full palette of over 300 colors can be found in the Color Documentation.

Much more examples and a detailed description can be found at 📄 Documentation page