hopefully you guys can help me. i facing some css layout problem. i want the layout have same effect of auto-expand width and height as table with using div. the effect i want is same as below example. layout with the width and height is dynamic and the content inside all at same horizontal line.
<table>
<tr>
<th>ipsum dolor sit amet</th>
<td>
<ul>
<li>apple</li>
<li>orange</li>
<li>mango</li>
</ul>
</td>
</tr>
<tr>
<th>ipsum</th>
<td>
<ul>
<li>apple</li>
<li>orange</li>
<li>mango</li>
</ul>
</td>
</tr>
</table>
is it possible to do it with only CSS? thanks for help if you could give some hints...