-
Nested Lists in XHTML
Quick Overview If you want to nest lists in HTML, you probably did something like the following (although you may not have done the indenting) <ul><br /> <li>List Item 1</li><br /> <ul><br /> <li>Sublist Item 1</li><br /> <li>Sublist Item 2</li><br /> <ul><br /> <li>Subsublist Item 1</li><br /> </ul><br /> <li>Sublist Item 3</li><br /> </ul><br /> […]