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