tags:

views:

52

answers:

2

Hi,

is there any way to create a table like this below using lists ?

**************
*  1  * 1.1  *
**************
      * 1.2  *    
      ********
      * 1.3  *    
      ********
      * 1.4  *    
      ********

Regards

Javi

+1  A: 

I would use two <UL>

ex:

<ul><li>List 1
    <ul><li>Item 1.1</li>
        <li>Item 1.2</li>
    </ul>
    </li>
</ul>

This would show up like this :

  • List 1
    • Item 1.1
    • Item 1.2

After that, you could add css class to organize it all!

Acibi
I don't know, the example he gave looks like the perfect candidate for an ordered list (`ol`).
alex