|
Posted by Ed Seedhouse on 06/03/06 06:14
On Fri, 02 Jun 2006 21:31:20 GMT, "CK" <c_kettenbach@hotmail.com> wrote:
>Hello all,
>I have a nested ol and I need help with the numbering.
>For example.
><ol>
> <li>Sweet</li>
> <li>Salty</li>
> <ol>
> <li>Very Salty</li>
> <li>lightly salted</li>
> </ol>
> <li>bitter</li>
First, you should get your html legal:
> <li>Salty
> <ol>
> <li>Very Salty</li>
> <li>lightly salted</li>
> </ol>
> </li>
> <li>bitter</li>
Everthing in an ordered list has to go inside the list items.
Navigation:
[Reply to this message]
|