White background class in Bootstrap

css, twitter-bootstrap

Solution

Since Bootstrap 4, Bootstrap does have white, light and dark background classes.

HTML:

<div class="bg-light text-dark">Light background</div>
<div class="bg-dark text-white">Dark background</div>
<div class="bg-white text-dark">White background</div>

Source : Background Color - Bootstrap Docs

Problem

I'm searching for a class that makes the element a white background. maybe something like .bg-white, I couldn't find it in Bootstrap but maybe its hidden somewhere?

Original source