Create special table row

by jonahe

HTML

<table contenteditable>
  <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
  </tr>
</table>
<button>
  Get code
</button>

CSS

table td {
  display: inline-block;
  min-width: 70px;
  min-height: 70px;
  border: 1px solid grey;
}