我正试图突出部分标题,如上所示。它似乎没有任何影响,我怎样才能达到我之后的目标?
<h1> <strong>BOLD</strong>NOTBOLD</h1>
&#13;
答案 0 :(得分:2)
您可以将font-weight设置为normal
而不是large
,这是默认的字体粗细。这是一个片段。
h1 { font-weight:normal; }
<h1><strong>Bold</strong>Not Bold</h1>
答案 1 :(得分:1)
重置font-weight
代码的h1
h1{
font-weight: normal;
}
<h1><strong>BOLD</strong>NOTBOLD</h1>
答案 2 :(得分:1)
标题默认为粗体,您必须“解开”它:
h1{
font-weight: normal;
}
<h1>Hello normal <strong>and then bold</strong></h1>
答案 3 :(得分:0)
<h1>Bold<span style="font-weight: lighter">Not Bold</span></h1>
答案 4 :(得分:0)
标题标签已经变为粗体,如果您仍想突出显示它,您可以使用其他一些属性,例如make it Italic,set font-color等,