empty-cells
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
Diese Eigenschaft hat nur eine Auswirkung, wenn die Eigenschaft border-collapse
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 einer der unten aufgeführten Schlüsselwortwerte angegeben.
Werte
Formale Definition
Initialer Wert | show |
---|---|
Anwendbar auf | table-cell Elemente |
Vererbt | Ja |
Berechneter Wert | wie angegeben |
Animationstyp | diskret |
Formale Syntax
empty-cells =
show |
hide
Beispiele
Leere Tabellenzellen anzeigen und ausblenden
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 Revision 2 (CSS 2.2) Specification # empty-cells |
Browser-Kompatibilität
BCD tables only load in the browser