Connecting Tech Pros Worldwide Help | Site Map

unordered list

  #1  
Old October 13th, 2008, 07:05 PM
asc4john
Guest
 
Posts: n/a
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?


  #2  
Old October 13th, 2008, 07:35 PM
Chris F.A. Johnson
Guest
 
Posts: n/a

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)
  #3  
Old October 13th, 2008, 11:55 PM
dorayme
Guest
 
Posts: n/a

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
bullet image for unordered list problem torweb answers 2 March 16th, 2008 05:28 AM
Ordered List/ UnOrdered List -> Transform them into drop down menus User answers 3 December 12th, 2006 10:55 PM
how to transform a list form of hyphens to an html unordered list ibiza answers 5 February 9th, 2006 04:25 PM