Why does the list closing tag force an extra line under the list in a table cell in IE6? [fine in Mozilla].
Try the code above to see what I mean. If you remove the closing </ol> tag it's fine. Any ideas?
Greg.
Code:
<html>
<head/>
<body>
<table border="1">
<tr>
<td>
<ol>
<li>element 1</li>
<li>element 2</li>
</ol>
</td>
</tr>
</table>
</body>
</html>
Greg.