• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Internet Explorer and table nesting

Cyrilix

2[H]4U
Joined
Jan 21, 2005
Messages
2,188
I wonder if anyone has tried to do some table code with Internet Explorer and Firefox / Opera using XML/XSLT. If you try to nest <td> tags, Firefox and Opera will parse your XSLT one way, and IE will parse it another, meaning that you can't write XSLT that works with all of the parsers.

If in my XSLT, I do something along the lines of:

<table>
<tr>
<td>
<td>Text</td>
<td>Text</td>
</td>
</tr>
</table>

It won't display properly in IE, since IE's XSL parser won't nest my <td> tags. In Firefox and Opera, the parser will generate HTML output that will essentially show 2 mini <td> tables within the larger <td> table.

Anyone else bumped into this?
 
Sorry, don't see what you're talking about, they're displaying the same between IE7 and Firefox. Could be a IE6 thing

Why would you want to do that anyway? Why not use a new table inside the cell?
 
GaryS128 said:
Sorry, don't see what you're talking about, they're displaying the same between IE7 and Firefox. Could be a IE6 thing

Why would you want to do that anyway? Why not use a new table inside the cell?
Hmm...I never thought of it that way...I always thought <td> within a <td> meant a nested table, but maybe not.

I will give this a try and see how it goes.

Thanks.
 
Back
Top