Coding for mulitple browsers is like being a child of divorced parents. Anyways, I don't think that I've had problems like this before, but it seems that in firefox colspan is not getting read. Here is a snippet that I'm looking at:
The page is made in coldfusion, and this snippet is in a loop. The include's first tag is a table tag. My page looks fine in IE, but not in FF. The <TD> is not spanning the 10 columns in FF.
If colspan is supported, then I'm pretty sure I'm missing a closing tag somewhere.
Code:
<tr id="details_#rownum#" style="display: none;">
<td colspan="10" width="700px">
<cfinclude template="detailsdisplay.cfm">
</td>
</tr>
If colspan is supported, then I'm pretty sure I'm missing a closing tag somewhere.