Major issue with IFRAME. The editor completely destroys markup when there is an iframe tag.
To reproduce:
Start with this in the HTML view:
<table style="WIDTH: 100%">
<tbody>
<tr>
<td style="WIDTH: 10%"> </td>
<td style="WIDTH: 80%; TEXT-ALIGN: center"> </td>
<td style="WIDTH: 10%" />
</tr>
<tr>
<td style="WIDTH: 10%" />
<td style="WIDTH: 80%; TEXT-ALIGN: center" />
<td style="WIDTH: 10%" />
</tr>
</tbody>
</table>
Design looks fine. Switch back to HTML and change it to:
<table style="WIDTH: 100%">
<tbody>
<tr>
<td style="WIDTH: 10%"> </td>
<td style="WIDTH: 80%; TEXT-ALIGN: center">
<iframe frameborder="0" src="http://www.google.com" /> </td>
<td style="WIDTH: 10%" />
</tr>
<tr>
<td style="WIDTH: 10%" />
<td style="WIDTH: 80%; TEXT-ALIGN: center" />
<td style="WIDTH: 10%" />
</tr>
</tbody>
</table>
The only change was adding the iframe tag. Switch back to design view. In my editor, I lose the 2nd row, and sometimes the right column.
Anyone have any ideas?
Thanks,
Amit