From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/fr/web/css/empty-cells/index.html | 118 ++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 files/fr/web/css/empty-cells/index.html (limited to 'files/fr/web/css/empty-cells/index.html') diff --git a/files/fr/web/css/empty-cells/index.html b/files/fr/web/css/empty-cells/index.html new file mode 100644 index 0000000000..96841dab17 --- /dev/null +++ b/files/fr/web/css/empty-cells/index.html @@ -0,0 +1,118 @@ +--- +title: empty-cells +slug: Web/CSS/empty-cells +tags: + - CSS + - Propriété + - Reference +translation_of: Web/CSS/empty-cells +--- +
{{CSSRef}}
+ +

La propriété empty-cells définit la façon dont l'agent utilisateur doit afficher les bordures et l'arrière-plan des cellules d'un tableau ({{HTMLElement("table")}}) qui n'ont aucun contenu visible.

+ +
{{EmbedInteractiveExample("pages/css/empty-cells.html")}}
+ + + +

Cette propriété est uniquement appliquée lorsque border-collapse vaut separate.

+ +

Syntaxe

+ +
/* Valeurs avec mot-clé */
+empty-cells: show;
+empty-cells: hide;
+
+/* Valeurs globales */
+empty-cells: inherit;
+empty-cells: initial;
+empty-cells: unset;
+
+ +

Cette propriété se définit avec l'un des mots-clés suivants.

+ +

Valeurs

+ +
+
show
+
Un mot-clé indiquant que les bordures et l'arrière-plan doivent être dessinés comme pour les cellules normales.
+
hide
+
Un mot-clé indiquant qu'aucune bordure ou arrière-plan ne doit être dessiné.
+
+ +

Syntaxe formelle

+ +
{{csssyntax}}
+
+ +

Exemples

+ +

HTML

+ +
<table class="table_1">
+    <tr>
+        <td>Jean</td>
+        <td>Biche</td>
+    </tr>
+    <tr>
+        <td>Alice</td>
+        <td></td>
+    </tr>
+</table>
+<table class="table_2">
+    <tr>
+        <td>Jean</td>
+        <td>Biche</td>
+    </tr>
+    <tr>
+        <td>Alice</td>
+        <td></td>
+    </tr>
+</table>
+
+ +

CSS

+ +
.table_1 {
+  empty-cells: show;
+}
+.table_2 {
+  empty-cells: hide;
+}
+
+td, th {
+  border: 1px solid #999;
+  padding: 0.5rem;
+}
+
+ +

Résultat

+ +

{{EmbedLiveSample('Exemples', '100%', '200')}}

+ +

Spécifications

+ + + + + + + + + + + + + + + + +
SpécificationÉtatCommentaires
{{SpecName('CSS2.1', 'tables.html#empty-cells', 'empty-cells')}}{{Spec2('CSS2.1')}}Définition initiale.
+ +

{{cssinfo}}

+ +

Compatibilité des navigateurs

+ + + +

{{Compat("css.properties.empty-cells")}}

-- cgit v1.2.3-54-g00ecf