更改句子中单个单词或一组单词的颜色或字体的正确方法是什么?我正在使用 Twitter Bootstrap 并希望继承<div>
's 类的所有属性,但只稍微调整它们。
问问题
58874 次
1 回答
24
离开Chords
评论,您可以创建一个<span>
围绕您要更改的文本的标签。您可以轻松地将多个类添加到单个跨度,以实现您想要的外观。
这是一个小提琴,展示了如何在单个跨度上使用多个类。
CSS
.bold { font-weight: bold; }
.red { color: #FF0000; }
.yellow-background { background-color: Yellow; }
HTML
Here is <span class="bold">some text</span> that we are going to apply
<span class="bold red">different styles</span> to. You can see how
<span class="bold yellow-background">multiple classes</span> can be used to
change the <span class="red bold yellow-background">look and feel</span>
of the text.
于 2012-11-27T15:53:55.107 回答