Forum Moderators: open

Message Too Old, No Replies

IE and Mozilla

The battle continues...

         

Steveo31

7:45 pm on Jun 10, 2004 (gmt 0)

10+ Year Member



Same story... made a website in Mozilla Firefox .8 and am now at school on IE. Huuuuuuge problems. Almost as if some CSS isn't being read at all. The most annoying one being "tr { vertical-align: top; }" All the <tr> elements are in the center.

What gives? Is there some sort of setting I need to fiddle with? In this case I don't think it is the Mac's fault...

choster

7:50 pm on Jun 10, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



For the precise example you cited, replace tr {vertical-align:top} with tr td {vertical-align:top}.

isitreal

7:59 pm on Jun 10, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



You're talking about IE 5x mac? Which version 5.1 or 5.2?

5.2 is from what I've read garbage, bugs all over the place, I barely bother supporting that browser anymore, it's almost like netscape 4 in its range of bugs.

Search for IE 5.2 bugs, mac, you'll find lots of stuff.

The specific thing isn't a bug though really,

td {
vertical-align:top;
}

is what you want, I always default my layouts to that to avoid the middle display default in table cells.

tr td is unnecessary, since all td's are in tr's.