Таблица без внешней границы

HTML

<table contenteditable="true" style="	width:90px;
	border-collapse:collapse; nowrap:0; ">
	<tr>
		<th>&nbsp;</th><th>&nbsp;</th><th>&nbsp;</th><th>&nbsp;</th>
	</tr>

</table>

CSS

/* table{
  width:90px;
  border-collapse:collapse;
} */

table th {
    border: solid 1px #000;

}