Having given up on my Mac IE conversion (sigh) I moved onto the next thing... nested lists. I have been doing it like so:
But upon trying to validate the html it complains (and rightfully so) that the use of the nested lists is deprecated. Below is the exact result:
Line 135, column 23: document type does not allow element "UL" here; assuming missing "LI" start-tag
<ul id="listSub">
So now here's the question.. how does one make nested lists without using this method? W3C suggests the use of dd and dt tags but this just seems silly. How do you guys do it?
Code:
<ul id="listMain">
<li>MainMenu1</li>
<li>MainMenu1</li>
<ul id="listSub">
<li>SubMenu</li>
</ul>
<li>MainMenu1</li>
<li>MainMenu1</li>
<li>MainMenu1</li>
</ul>
But upon trying to validate the html it complains (and rightfully so) that the use of the nested lists is deprecated. Below is the exact result:
Line 135, column 23: document type does not allow element "UL" here; assuming missing "LI" start-tag
<ul id="listSub">
So now here's the question.. how does one make nested lists without using this method? W3C suggests the use of dd and dt tags but this just seems silly. How do you guys do it?