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
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
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 :
After that, you could add css class to organize it all!