html - Firefox 4 <sections> and headers -
from question started looking: firefox screwing headings sizes h1 h2 h3
here html snippet show issue:
<html> <head> </head> <body> <section> <section> <h1>this h1</h1> <h2>this h2</h2> <h3>this h3</h3> <h4>this h4</h4> </section> </section> </body> </html>
so save test.html , open in firefox 4 , in chrome, h1 tag shows way smaller in firefox 4.
can explain me how fix ?
it possible use <h1>
tag multiple times in same document part of html5. <h1>
tag used title section. apparently, firefox implements nested section indication reduce size of <h1>
sub-section, makes sense, while chrome not.
more info
Comments
Post a Comment