我想使用Twitter Bootstrap,但只在特定的元素,所以我需要找出一种方法来前缀所有Twitter Bootstrap类与我的前缀,或使用较少的混合。我没有这方面的经验,所以我不太明白如何这样做。这里有一个我想尝试的HTML样例:
<div class="normal-styles"> <h1>dont style this with bootstrap</h1> <div class="bootstrap-styles"> <h1>use bootstrap</h1> </div> </div>
在这个例子中,Twitter Bootstrap会正常设计h1s,但是我想更有选择性地应用Twitter Bootstrap风格。