字体粗细不适用于Chrome中的标签

时间:2010-10-18 15:42:47

标签: css google-chrome fonts

我的代码中有这一行:

<label style="font-weight: bold" for="sedii18n_codice_paese_indirizzo">Codice paese indirizzo</label>

但标签显示正常。

如果我转到Chrome Inspector,我可以看到:

font-weight: normal !important;

如果我在检查器中更改font-weight,则会正常修改字体的重量。

3 个答案:

答案 0 :(得分:11)

看起来其他东西覆盖了你的大胆风格,因此!重要的标签。 Chrome Inspector应该告诉您font-weight: normal !important;的应用位置。您可以尝试将font-weight: bold !important;放在style属性中以覆盖此覆盖。 : - )

答案 1 :(得分:2)

你看看on the top right corner of your active element in the inspector了吗?

您可以找到覆盖代码的样式表

答案 2 :(得分:0)

您可以为 label 标签创建一个单独的 .css 文件并在下面提及它:-

.lbl { font-weight : normal; }

内部 html 文件:-<label class = "lbl" for="sedii18n_codice_paese_indirizzo">Codice paese indirizzo</label>

这对我有用,并且在谷歌浏览器中被覆盖。