Adam,
Another bug in FF and tables.
In IE, when I Ctrl/Alt down arrow, most of the properties of the current row are carried to the new row. I've mentioned that Height and perhaps padding may not.
However, in Firefox, none of the settings of the prior row are carried to the new row.
For example, here's the current row:
<tr>
<td align="left" valign="top" width="150"> </td>
<td align="left" valign="top" width="150"> </td>
<td align="left" valign="top" width="150"> </td>
<td align="right" valign="top" width="150">This is right </td>
</tr>
When I Ctrl/Alt down arrow, here's the new row:
<tr align="left" valign="middle">
<td colspan="1"> </td>
<td colspan="1"> </td>
<td colspan="1"> </td>
<td colspan="1"> th</td>
</tr>
Note that the <tr> tag incorrectly has alignment and valign inserted. This is incorrect.
Note another problem with the new row: it has "colspan" inserted. This shouldn't be there I think.
In IE, this row:
<TR>
<TD vAlign=top align=left></TD>
<TD vAlign=top align=left></TD>
<TD vAlign=top align=right>and this one</TD>
</TR>
is duplicated correctly as:
<TR>
<TD vAlign=top align=left></TD>
<TD vAlign=top align=left></TD>
<TD vAlign=top align=right></TD>
</TR>
FredD