我想使用 Twitter Bootstrap,但只在特定元素上使用,所以我需要想办法用我的前缀为所有 Twitter Bootstrap 类添加前缀,或者使用更少的 mixins。我还没有这方面的经验,所以我不太明白如何做到这一点。这是我尝试设置样式的 HTML 示例:
<div class="normal-styles">
<h1>dont style this with bootstrap</h1>
<div class="bootstrap-styles">
<h1>use bootstrap</h1>
</div>
</div>
在此示例中,Twitter Bootstrap 将正常设置两个h1
s 的样式,但我希望对应用 Twitter Bootstrap 样式的区域更具选择性。