Blenden Sie leere Zellen in der Tabelle aus

Ich möchte leere Zellen in der Tabelle verstecken. Hier ist mein Code:

$(function() {
  $(".empty").each(hideCellIfEmpty);
});

function hideCellIfEmpty() {
  var theCell = $(this);
  if (theCell.html().length == 0) {
    hideSoft(theCell);
  }
}

function hideSoft(jQElement) {
  jqElement.css('visibility', 'hidden');
}
table.empty {
  width: 350px;
  border-collapse: collapse;
  empty-cells: hide;
}
td.empty {
  border-style: solid;
  border-width: 1px;
  border-color: blue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<table class="empty">
  <tr>
    <th></th>
    <th>Title one</th>
    <th>Title two</th>
  </tr>
  <tr>
    <th>Row Title</th>
    <td class="empty">value</td>
    <td class="empty">value</td>
  </tr>
  <tr>
    <th>Row Title</th>
    <td class="empty">value</td>
    <td class="empty"></td>
  </tr>
</table>

Sie sehen, in der 2. Zeile wird eine leere Zelle angezeigt. Aber ich möchte es verstecken. Außerdem möchte ich nicht verwendenborder-collapse:separate. Ist dies möglich, die leere Zelle mit auszublenden?border-collapse:collapse? Ich möchte auch wissen, warum dies leere Zellen zeigt.

P.S. Verwendenborder-collapse: separate funktioniert und zeigt keine leeren Zellen.

$(function() {
  $(".empty").each(hideCellIfEmpty);
});

function hideCellIfEmpty() {
  var theCell = $(this);
  if (theCell.html().length == 0) {
    hideSoft(theCell);
  }
}

function hideSoft(jQElement) {
  jqElement.css('visibility', 'hidden');
}
table.empty {
  width: 350px;
  border-collapse: separate;
  empty-cells: hide;
}
td.empty {
  border-style: solid;
  border-width: 1px;
  border-color: blue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<table class="empty">
  <tr>
    <th></th>
    <th>Title one</th>
    <th>Title two</th>
    <th>Title three</th>
  </tr>
  <tr>
    <th>Row Title</th>
    <td class="empty">value</td>
    <td class="empty">value</td>
    <td class="empty">value</td>
  </tr>
  <tr>
    <th>Row Title</th>
    <td class="empty">value</td>
    <td class="empty"></td>
    <td class="empty">value</td>
  </tr>
</table>

Dies beantwortet jedoch nicht die folgenden Fragen:

Warum werden leere Zellen angezeigt, wennborder-collapse: collapse wird eingesetzt ?

Warum werden leere Zellen nicht angezeigt, wennborder-collapse: separate wird eingesetzt ?

Antworten auf die Frage(4)

Ihre Antwort auf die Frage