Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
table, td {
    border: 1px solid black;
    margin: 15px;
}

</style>
</head>
<body>

<p>Click the "Try it" button to "hide" or "show" empty table-cells:</p>

<button type="button" onclick="hide()">Hide empty cells</button>
<button type="button" onclick="show()">Show empty cells</button>

<table id="myTABLE">
  <tr>
    <td>Peter</td>
    <td>Griffin</td>
  </tr>
  <tr>
    <td>Lois</td>
    <td></td>
  </tr>
</table>

<p><b>Note:</b> Internet Explorer 8 supports the empty-cells property only if a !DOCTYPE is specified.</p>

<script>
function hide() {
    document.getElementById("myTABLE").style.emptyCells = "hide";
}

function show() {
    document.getElementById("myTABLE").style.emptyCells = "show";
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy