目前我正在使用引导程序。对于主题,我使用 Bootswatch 主题。我注意到 Jumbotron 在每个主题中都有相同的丑陋灰色背景。所以我想用.bg-
类来改变颜色。
我还读到:
处理特异性
有时,由于另一个选择器的特殊性,无法应用上下文背景类。在某些情况下,一个足够的解决方法是将元素的内容包装在一个类中。
所以这也是我尝试过的。
我尝试了什么:
<div class="jumbotron bg-success">
<h1>Hello, world!</h1>
<p>...</p>
<p><a class="btn btn-primary btn-lg" role="button">Learn more</a></p>
</div>
<div class="bg-success">
<div class="jumbotron">
<h1>Hello, world!</h1>
<p>...</p>
<p><a class="btn btn-primary btn-lg" role="button">Learn more</a></p>
</div>
</div>
但这不起作用,因为bg-
该类没有覆盖 jumbotron 背景颜色。
示例: http: //www.bootply.com/yhvhdor7lr