什么是Bootstrap 4.1中的bd-highlight?

Joh*_*ohn 28 twitter-bootstrap bootstrap-4

flexbox的bootstrap 4.1文档页面上,有几个bd-highlight使用该类的示例.例如:

<div class="d-flex p-2 bd-highlight">I'm a flexbox container!</div>
Run Code Online (Sandbox Code Playgroud)

有什么用bd-highlight
这个类似乎没有任何文档.

Dav*_*ang 44

我认为这只是一个自定义的css类,用于在文档页面上突出显示示例,即设置背景颜色和边框.

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

bd = Bootstrap文档?