Table cell

by Long Nguyễn Hoàng

HTML

<table class="table_1">
  <tr>
    <th></th>
    <th>Test</th>
    <th>A</th>
  </tr>
  <tr>
    <td>Hehe</td>
    <td>haha</td>
    <td>hihi</td>
  </tr>
</table>
<br>
<table class="table_2">
  <tr>
    <th></th>
    <th>Test</th>
    <th>A</th>
  </tr>
  <tr>
    <td>Hehe</td>
    <td>haha</td>
    <td>hihi</td>
  </tr>
</table>

CSS

.table_1 {
  empty-cells: show;
}

.table_2 {
  empty-cells: hide;
}

td,
th {
  border: 1px solid gray;
  padding: 0.5rem;
  display:table-cell;
}
table{border-collapse: collapse;}