Sure I can. Here I go:
you can find it on:
http://jzarate.freewebpages.org/test.html
(just created it).
and this is de "sourcecode":
<html>
<body>
<style>
div#mozilla div{
border:1px solid blue;
height:100%;
background-color:green;
}
td{ position:relative;
border:1px solid red;
width:150px;
background-color:pink;
}
span{
position:absolute;
top:50%;
}
</style>
<div id="mozilla">
divs inside cell.
<table width="300">
<tr>
<td><div>this is a table cell.</div></td><td><div>this is another table
cell with a so looooooong text inside</div></td>
</tr>
</table>
</div>
relative positioned cells
<div id="ie">
<table width="300">
<tr>
<td><span>I should be at height's:50% of the table
cell</span></td><td>I shouldn't</td>
</tr>
</table>
</div>
</body>
</html>
you can see how divs doesn't expand to the table cell's height in
explorer -although they do in firefox-, and that you can't relative
position a table cell in firefox -although you can in explorer-
_______________________________________________
mozilla-layout mailing list
[email protected]
http://mail.mozilla.org/listinfo/mozilla-layout