Firefox 4 <sections>和标题</sections>

时间:2011-05-11 00:08:06

标签: html css firefox firefox4

从这个问题我开始寻找:  Firefox screwing up headings sizes h1 h2 h3

这是一个显示问题的html代码段:

<html>
  <head>
  </head>
  <body>
    <section>
    <section>
      <h1>This is an h1</h1>
      <h2>This is an h2</h2>
      <h3>This is an h3</h3>
      <h4>This is an h4</h4>
    </section>
    </section>
  </body>
</html>

将其保存到test.html并在firefox 4和chrome中打开,h1标记在firefox 4中显示的方式更小。

有谁能解释我如何解决这个问题?

2 个答案:

答案 0 :(得分:3)

可以在同一文档中多次使用<h1>标记作为HTML5的一部分。 <h1>标记专门用作部分的标题。显然,FireFox实现嵌套部分作为减少子部分<h1>大小的指示,这是有意义的,而Chrome则没有。

更多信息

答案 1 :(得分:1)

使用CSS指定所有h1标签的大小怎么样?然后,无论是在某个部分还是其他任何内容都无关紧要。