用户代理样式表 - 强的css属性是否已禁用?

时间:2017-03-31 22:28:59

标签: html

strong issue in user agent stylesheet 在我的codepen中,我在段落中放置了<strong></strong>个标签,但我注意到没有显示重点。 Chrome开发人员工具显示强者的用户代理样式表有一条线。有什么可能禁用此设置,因为我没有覆盖强自己或更改我的代码中的任何字体权重?

我正在使用chrome版本56。

<p id="p10">offset() - Get the current coordinates of the first element, or set the coordinates of every element, in the set of matched elements, relative to the document. <strong>[returns: object]</strong>
</p>

3 个答案:

答案 0 :(得分:2)

您的codepen调用此重置样式表(经典的“Eric Meyer重置”):

https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css

这会重置所有内部浏览器样式(即它会覆盖它们),因此您(以及其他许多人)可以为strong标记添加自己的CSS,其规则如

strong {
  font-weight: bold;
}

或者您只是删除对该重置样式表的引用...

正如对downvote的反应:你认为这是什么:

enter image description here

答案 1 :(得分:0)

您是否有可能在font-weight标记上设置font: inherit或致电<p>,或者可能来自ID?

正如其他答案所述,您可能会在css重置文件中覆盖此内容: https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css

您可以按照以下方式重新声明:

strong { 
   font-weight: bold !important;
}

答案 2 :(得分:-1)

  

您是否可以设置字体粗细或调用字体:继承

标签或可能来自ID?我认为这可能会覆盖标签。您可以按如下方式重新声明:

     

strong { font-weight: bold; }

如果上述解决方案不起作用,请尝试将其与!important一起使用,如下所示:

strong { font-weight: bold !important; }