Posted by Els on 11/02/07 08:09
Alan Searle wrote:
> http://alse.load4.net/tabletest/table_test08.html
>
> ... which works perfectly under Firefox and looks OK under IE (7.0) but
> under IE I find that the content of the first cell is hidden under my
> header-bar. You will see that the first 'The Rain in Spain' appears
> under Firefox but is hidden with IE.
>
> I am hoping that there is a CSS guru out there who can take a look at my
> code and tell me how I might be able to teak it to fix this problem?
You have this code in your styles, hidden from Firefox:
thead tr {
position: absolute;
/* top: expression( this.parentNode.offsetHeight - 6 ); */
}
I guess that means that the tr in the thead is not taking up any space
(normal side-effect of position:absolute), so the tbody starts at the
top of the table, and is therefore covered by the thead.
--
Els http://locusmeus.com/
Navigation:
[Reply to this message]
|