HI
While h1 is allowed in li according to
http://htmlhelp.com/reference/html40/block/h1.html, it's not the same
way that you are suggesting.. if you want to markup text to be
emphasised used em or strong.
h1-h6 are headings for content
You would be better of using descendant selectors here to avoid bloat
<h4>My list</h4><!-- for instance -->
<ul>
<li>hello
<ul><li>level2</li>
</li>
</ul>
ul
{
/* styles */
}
ul li ul li
{
/* i think this will catch the 2nd level -could even do an li li to
be less specific and catch ol's */
}
Cheers
James
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************