我有这段代码:
<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元素中的style属性。
答案 0 :(得分:1)
解决 我使用了配置属性 config.allowedContent
答案 1 :(得分:0)
在ckeditor中,右键单击要自定义的单元格。选择单元格然后选择单元格属性在那里,您可以设置单元格的所需宽度和高度。