一段时间以来,我的WordPress博客中的文字总是粗体。它并不总是这样,我无法弄清楚哪个CSS / HTML设置会导致这种情况。
你能帮帮我吗?这是该网站的链接:答案 0 :(得分:0)
这里有几个问题:
<font>
标记,不推荐使用此标记。它现在可能有效,但可以随时删除。请尝试使用段落<p>
或内嵌文本<span>
标记。然后使用CSS完成所有字体样式。 <h1>
和<label>
)是粗体(在大多数浏览器中)。如果您将font-weight
指定为等于400
或normal
,则应该可以胜任。!important
,因为你可以让自己陷入适当的困境,试图用重要的重要事件覆盖重要的导入者。基本上没有任何一个是坏人的示例强>
HTML:
<h1> India's Economy </h1>
<p class="intro-text">
Dear readers, the age of economic dominance
of the West is coming to an end. ......
<p>
CSS:
h1{
font-weight: normal;
}
p.intro-text{
// Add some other text styles in here...
}