Using TinyMCE editor, the only way I was able to remove all borders was to use border:hidden
in the style like this:
<style>
table, tr {border:hidden;}
td, th {border:hidden;}
</style>
And in the HTML like this:
<table style="border:hidden;"</table>
Cheers