我有一些文字,我想为某个单词着色以使其脱颖而出。 例如:
This is my text, <span class="red">this</span> should be red.
使用span标签是否正确?或者是否有不同的惯例,
奖金:粗体和斜体怎么样?
答案 0 :(得分:2)
Span是正确的方法。在课堂上学习也是一个很好的方法。但是,您需要问问自己,这是否一贯强调页面上的内容。
如果是这样,您可以考虑覆盖引导程序的<em>
标记。默认行为是使文本斜体。
我不会详细介绍如何自定义Bootstrap本身。覆盖默认样式很简单。简单地说,在你的自定义CSS中添加:
em {
color: red;
font-style: normal;
}
此代码font-style: normal;
将斜体更改为正常。
在你的html中使用em
回答问题的其他部分:
斜体:<em></em>
粗体:<strong></strong>
答案 1 :(得分:1)
如果您使用的是Twitter Bootstrap,则可以使用:
<span class="active">...</span>
<span class="success">...</span>
<span class="warning">...</span>
<span class="danger">...</span>
请参阅Bootstrap doc:http://getbootstrap.com/css/#tables-contextual-classes