Reputation: 31749
is there any way to create a table like this below using lists ?
**************
* 1 * 1.1 *
**************
* 1.2 *
********
* 1.3 *
********
* 1.4 *
********
Regards
Javi
Upvotes: 1
Views: 85
Reputation: 23
<table border=1>
<tr><td>1</td><td>1.1</td></tr>
<tr><td rowspan=3></td><td>1.2</td></tr>
<tr><td>1.3</td></tr>
<tr><td>1.4</td></tr>
</table>
Upvotes: 0
Reputation: 1807
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!
Upvotes: 1