Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten. Erfahre mehr über dieses Experiment.

View in English Always switch to English

empty-cells

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨Juli 2015⁩.

Die empty-cells CSS Eigenschaft legt fest, ob Rahmen und Hintergründe um <table>-Zellen erscheinen, die keinen sichtbaren Inhalt haben.

Probieren Sie es aus

empty-cells: show;
empty-cells: hide;
<section class="default-example" id="default-example">
  <table class="transition-all" id="example-element">
    <tr>
      <th>Client Name</th>
      <th>Age</th>
    </tr>
    <tr>
      <td></td>
      <td>25</td>
    </tr>
    <tr>
      <td>Louise Q.</td>
      <td></td>
    </tr>
    <tr>
      <td>Owen B.</td>
      <td></td>
    </tr>
    <tr>
      <td>Stan L.</td>
      <td>71</td>
    </tr>
  </table>
</section>
th,
td {
  border: 2px solid #aa1199;
  padding: 0.25rem 0.5rem;
}

Diese Eigenschaft hat nur Auswirkungen, wenn die border-collapse Eigenschaft auf separate gesetzt ist.

Syntax

css
/* Keyword values */
empty-cells: show;
empty-cells: hide;

/* Global values */
empty-cells: inherit;
empty-cells: initial;
empty-cells: revert;
empty-cells: revert-layer;
empty-cells: unset;

Die empty-cells Eigenschaft wird als eines der unten aufgeführten Schlüsselwortwerte angegeben.

Werte

show

Rahmen und Hintergründe werden wie in normalen Zellen gezeichnet.

hide

Keine Rahmen oder Hintergründe werden gezeichnet.

Formale Definition

Anfangswertshow
Anwendbar auftable-cell Elemente
VererbtJa
Berechneter Wertwie angegeben
Animationstypdiskret

Formale Syntax

empty-cells = 
show |
hide

Beispiele

Leere Tabellenzellen anzeigen und verbergen

HTML

html
<table class="table_1">
  <tr>
    <td>Moe</td>
    <td>Larry</td>
  </tr>
  <tr>
    <td>Curly</td>
    <td></td>
  </tr>
</table>
<br />
<table class="table_2">
  <tr>
    <td>Moe</td>
    <td>Larry</td>
  </tr>
  <tr>
    <td>Curly</td>
    <td></td>
  </tr>
</table>

CSS

css
.table_1 {
  empty-cells: show;
}

.table_2 {
  empty-cells: hide;
}

td,
th {
  border: 1px solid gray;
  padding: 0.5rem;
}

Ergebnis

Spezifikationen

Specification
Cascading Style Sheets Level 2
# empty-cells

Browser-Kompatibilität

Siehe auch