0

我有这个代码:

<table align="center" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td  colspan="1" height="20" width="658">A</td>
  </tr>
  <tr>
    <td colspan="1" width="658">B</td>
  </tr>   
 </table>

CKEDITOR 将其转换为

<table align="center" border="0" cellpadding="0" cellspacing="0">
<tbody>
    <tr>
        <td colspan="1">A</td>
    </tr>
    <tr>
        <td colspan="1">B</td>
    </tr>
</tbody>
</table>

我怎样才能保持高度和宽度?一些邮件程序不喜欢 TD 元素中的样式属性。

4

2 回答 2

1

已解决我使用了配置属性 config.allowedContent

于 2013-10-16T11:25:11.007 回答
0

在 ckeditor 中,右键单击要自定义的单元格。选择单元格,然后选择单元格属性。在那里您可以设置单元格的所需宽度和高度。

于 2013-10-16T10:19:26.450 回答