diff options
Diffstat (limited to 'files/fr/web/css/empty-cells/index.md')
-rw-r--r-- | files/fr/web/css/empty-cells/index.md | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/files/fr/web/css/empty-cells/index.md b/files/fr/web/css/empty-cells/index.md new file mode 100644 index 0000000000..dc25ad57ab --- /dev/null +++ b/files/fr/web/css/empty-cells/index.md @@ -0,0 +1,113 @@ +--- +title: empty-cells +slug: Web/CSS/empty-cells +tags: + - CSS + - Propriété + - Reference +translation_of: Web/CSS/empty-cells +--- +<div>{{CSSRef}}</div> + +<p>La propriété <strong><code>empty-cells</code></strong> 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.</p> + +<div>{{EmbedInteractiveExample("pages/css/empty-cells.html")}}</div> + +<p>Cette propriété est uniquement appliquée lorsque <code>border-collapse</code> vaut <code>separate</code>.</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush:css no-line-numbers">/* Valeurs avec mot-clé */ +empty-cells: show; +empty-cells: hide; + +/* Valeurs globales */ +empty-cells: inherit; +empty-cells: initial; +empty-cells: unset; +</pre> + +<p>Cette propriété se définit avec l'un des mots-clés suivants.</p> + +<h3 id="Valeurs">Valeurs</h3> + +<dl> + <dt><code>show</code></dt> + <dd>Un mot-clé indiquant que les bordures et l'arrière-plan doivent être dessinés comme pour les cellules normales.</dd> + <dt><code>hide</code></dt> + <dd>Un mot-clé indiquant qu'aucune bordure ou arrière-plan ne doit être dessiné.</dd> +</dl> + +<h3 id="Syntaxe_formelle">Syntaxe formelle</h3> + +{{csssyntax}} + +<h2 id="Exemples">Exemples</h2> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: 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> +</pre> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css">.table_1 { + empty-cells: show; +} +.table_2 { + empty-cells: hide; +} + +td, th { + border: 1px solid #999; + padding: 0.5rem; +} +</pre> + +<h3 id="Résultat">Résultat</h3> + +<p>{{EmbedLiveSample('Exemples', '100%', '200')}}</p> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spécification</th> + <th scope="col">État</th> + <th scope="col">Commentaires</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS2.1', 'tables.html#empty-cells', 'empty-cells')}}</td> + <td>{{Spec2('CSS2.1')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("css.properties.empty-cells")}}</p> |