是否可以仅覆盖CSS类中的<strong>属性?</strong>

时间:2014-10-25 00:10:50

标签: html css

我想创建一个包含三个单词的div,我希望div中的一个单词可以用不同的字体和大小强调。是否有可能覆盖该div类中的默认<strong>,以便我可以使用hello there <strong> world作为单词“world”与其他“strong-ed”单词不同地强调那不是div?

3 个答案:

答案 0 :(得分:3)

您可以将样式设置为strong标记:

strong{
  font-weight:normal;
}

strong之前使用其他选择器将其应用于某些代码中的strong代码。

答案 1 :(得分:0)

我建议将其从strong更改为内联元素<span>。这将为您提供所需的一切控制。

<div id="myid">hello there <span>world</span></div>

#myid span {properties:values}

答案 2 :(得分:-1)

不要忘记广告你是哪个容器。所以你仍然可以在其他地方使用<strong>元素。

<div id="container">
  hello there <strong> world </strong>
</div>

#container strong
{
font-weight: normal;
color: red;
}