- From: <bugzilla@jessica.w3.org>
- Date: Fri, 15 Jul 2011 18:39:51 +0000
- To: public-html-bugzilla@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=12442
Ian 'Hixie' Hickson <ian@hixie.ch> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|I think that for the first |I think that for the first
|level of article h1 {…}, |level of article h1 {�},
|the size should be left as |the size should be left as
|normal. |normal.
--- Comment #4 from Ian 'Hixie' Hickson <ian@hixie.ch> 2011-07-15 18:39:51 UTC ---
That would mean that this:
<body>
<h1>My blog</h1>
...
<h2>My post</h2>
...
<h3>My subsection</h3>
...
</body>
...would have different results than this:
<body>
<h1>My blog</h1>
...
<article>
<h1>My post</h1>
...
<section>
<h1>My subsection</h1>
...
</section>
</article>
</body>
...despite having the same semantics. That doesn't really make sense.
The simpler solution is to just only use <h1>, like in the second example
above, instead of mixing both styles. Or, use CSS to make sure the headers work
as you want them to.
--
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Friday, 15 July 2011 18:39:56 UTC