What is bd-highlight in Bootstrap 4.1?

Twitter BootstrapBootstrap 4

Twitter Bootstrap Problem Overview


On the bootstrap 4.1 documentation page for flexbox, there are several examples where the class bd-highlight is used. For example:

<div class="d-flex p-2 bd-highlight">I'm a flexbox container!</div>

What is the use of bd-highlight?
There doesn't seems to be any documentation for this class.

Twitter Bootstrap Solutions


Solution 1 - Twitter Bootstrap

I think this is just a custom css class to highlight the examples, i.e., set background color and borders, on the documentation pages.

.bd-highlight {
    background-color: rgba(86,61,124,0.15);
    border: 1px solid rgba(86,61,124,0.15);
}

bd = Bootstrap Documentation?

Recommended Twitter Bootstrap Solutions

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJohnView Question on Stackoverflow
Solution 1 - Twitter BootstrapDavid LiangView Answer on Stackoverflow