Connecting Tech Pros Worldwide Forums | Help | Site Map

unordered list

asc4john
Guest
 
Posts: n/a
#1: Oct 13 '08
When including an unordered list in an unordered list:
Should it be included as a "list" item as in: <ul><liitem</
li><ul.... </ul<liitem</li</ul>
or included in the LI element as in: <ul><liitem</li<li<ul...
</ul></li></ul>?
or does it matter?



Chris F.A. Johnson
Guest
 
Posts: n/a
#2: Oct 13 '08

re: unordered list


On 2008-10-13, asc4john wrote:
Quote:
When including an unordered list in an unordered list:
Should it be included as a "list" item as in: <ul><liitem</
li><ul.... </ul<liitem</li</ul>
or included in the LI element as in: <ul><liitem</li<li<ul...
></ul></li></ul>?
or does it matter?
Everything in an unordered list must be in an <lielement.

--
Chris F.A. Johnson <http://cfaj.freeshell.org>
================================================== =================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
dorayme
Guest
 
Posts: n/a
#3: Oct 13 '08

re: unordered list


In article
<06bcfb25-13d4-42d5-a208-4e71d1da3927@x16g2000prn.googlegroups.com>,
asc4john <john@kinnear.cawrote:
Quote:
When including an unordered list in an unordered list:
Should it be included as a "list" item as in: <ul><liitem</
li><ul.... </ul<liitem</li</ul>
or included in the LI element as in: <ul><liitem</li<li<ul...
</ul></li></ul>?
or does it matter?
<ul>
<li>Canine
<ul>
<li>Dogs</li>
<li>Wolves</li>
</ul>
</li>
<li>Feline
<ul>
<li>Cats</li>
<li>Lions</li>
</ul>
</li>
</ul>

--
dorayme
Closed Thread