Re: nested lists in xhtml-transitional

The li element can contain any Flow object including ul and ol elements.
This is allowed
 <ul>
   <li>
      <ol>
       <li></li>
     </ol>
  </li>
 <li></li>
</ul>

This is NOT allowed (same as HTML 4.0). 
 <ul>
      <ol>
       <li></li>
     </ol>
 
 <li></li>
</ul>

HTH

Frank Boumphrey
----- Original Message ----- 
From: "mike andrews" <mikerandrews@yahoo.com>
To: <www-html@w3.org>
Sent: Sunday, December 09, 2001 1:09 PM
Subject: nested lists in xhtml-transitional


> hi there - nested lists don't seem to be allowed the
> xhtml-transitional dtd. is that true? am i reading it right? see:
> 
> http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd
> 
> thanks - mike andrews
> 
> =====
> -------------------------------------------  
> Please sign and encrypt your emails to me! My PGP information is
> available upon request or at ldap://certserver.pgp.com.
> 
> pgp freeware at http://www.pgp.com/
> 
> __________________________________________________
> Do You Yahoo!?
> Send your FREE holiday greetings online!
> http://greetings.yahoo.com
> 

Received on Tuesday, 11 December 2001 18:51:22 UTC