我在h1
标签中font-size
了许多页面中各种大小,但我想将它们标准化为25px
,但是当我尝试在页面的head
部分添加style
时,它根本没有反映更改。 如何用所需的font-size
覆盖原始?
h1 {font-size: 25px!important}
<h1 align="center">
<span style="font-size: 10pt" lang="ar-sa">
<a style="text-decoration: none" href="example.come">
<font color="#008000">Title here</font></a></span></h1>
它正在为您的h1
占用字体大小,但因为您有内联样式用于span
。因此,您不仅需要覆盖font-size
,不仅要覆盖h1
,还要覆盖span
。
h1 span {font-size: 25px!important}
<h1 align="center">
<span style="font-size: 10pt" lang="ar-sa">
<a style="text-decoration: none" href="example.come">
<font color="#008000">Title here</font></a></span></h1>
希望这个答案对你有帮助。
路径存在问题,如果您的 html 与所有标题相同,那么您可以在 css 中使用这种类型的路径
建议的 CSS
H1> 跨度> { 字体大小: 25px!重要 }