Is there a way to only add an outer border to an HTML table in CKEDITOR? I've attempted to remove the inner borders using the advanced options in CKEDITOR, but it doesn't seem to be working.
<table border="1" cellpadding="1" cellspacing="1" style="width:500px">
<tbody>
<tr>
<td border="0"> </td>
<td border="0"> </td>
<td border="0"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>