我想使用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
,但我希望对我在哪些方面应用Twitter Bootstrap样式有更多选择。