> So is the alternative unstructured content?
> 
>          <li>Item 1
>            <a href="#">Add</a>
>            <a href="#">Edit</a>
>            <a href="#">Delete</a>
>          </li>

Maybe a combination of nested ordered and unordered lists would be more
suitable.

<ol>
  <li>Item 1
    <ul>
      <li>Add</li>
      <li>Edit</li>
      <li>Delete</li>
    </ul>
    <ol>
      <li>Item 1.1
        <ul>
          <li>Add</li>
          <li>Edit</li>
          <li>Delete</li>
        </ul>
      </li>
    </ol>
  </li>
</ol>

Whereby you have an ordered list of items, and each item can have a related
unordered list of actions, an ordered lists or sub-items, each of which can
in turn have it's own related unordered list of actions and ordered list of
sub-items.

Regards

Scott Swabey
Design & Development Director

Lafinboy Productions
www.lafinboy.com

******************************************************
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
******************************************************

Reply via email to