diff options
author | julieng <julien.gattelier@gmail.com> | 2021-09-17 20:59:20 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-12 07:57:33 +0200 |
commit | 258ba7b4be62d8640477a3bd3146d08b00cb70ec (patch) | |
tree | a8476eee4c369ff47bdfe08353774414f2281ba3 /files/fr/web/css/column_combinator | |
parent | 149319bb8c7b1394a443f0877c3460cd362aa815 (diff) | |
download | translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.tar.gz translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.tar.bz2 translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.zip |
convert content to md
Diffstat (limited to 'files/fr/web/css/column_combinator')
-rw-r--r-- | files/fr/web/css/column_combinator/index.md | 131 |
1 files changed, 60 insertions, 71 deletions
diff --git a/files/fr/web/css/column_combinator/index.md b/files/fr/web/css/column_combinator/index.md index 869a1e10dc..fb9fd15cd3 100644 --- a/files/fr/web/css/column_combinator/index.md +++ b/files/fr/web/css/column_combinator/index.md @@ -8,89 +8,78 @@ tags: translation_of: Web/CSS/Column_combinator original_slug: Web/CSS/Combinateur_colonne --- -<div>{{CSSRef("Selectors")}}{{Draft}}{{SeeCompatTable}}</div> +{{CSSRef("Selectors")}}{{Draft}}{{SeeCompatTable}} -<p>Le <strong>combinateur de colonne</strong> (<code>||</code>) est placé entre deux sélecteurs CSS. Les éléments ciblés sont ceux ciblés par le deuxième sélecteur et qui appartiennent à un élément en colonne qui correspond au premier sélecteur.</p> +Le **combinateur de colonne** (`||`) est placé entre deux sélecteurs CSS. Les éléments ciblés sont ceux ciblés par le deuxième sélecteur et qui appartiennent à un élément en colonne qui correspond au premier sélecteur. -<pre class="brush: css no-line-numbers">/* Les cellules de tableaux qui appartiennent */ +```css +/* Les cellules de tableaux qui appartiennent */ /* à la colonne "selected" */ col.selected || td { background: gray; } -</pre> +``` + +## Syntaxe + + column-selector || cell-selector { + /* propriétés pour le style */ + } + +## Exemples + +### HTML + +```html +<table border="1"> + <colgroup> + <col span="2"/> + <col class="selected"/> + </colgroup> + <tbody> + <tr> + <td>A + <td>B + <td>C + </tr> + <tr> + <td colspan="2">D</td> + <td>E</td> + </tr> + <tr> + <td>F</td> + <td colspan="2">G</td> + </tr> + </tbody> +</table> +``` -<h2 id="Syntaxe">Syntaxe</h2> +### CSS -<pre class="syntaxbox"><var>column-selector</var> || <var>cell-selector</var> { - <var>/* propriétés pour le style */</var> -} -</pre> - -<h2 id="Exemples">Exemples</h2> - -<h3 id="HTML">HTML</h3> - -<pre class="brush: html"><table border="1"> - <colgroup> - <col span="2"/> - <col class="selected"/> - </colgroup> - <tbody> - <tr> - <td>A - <td>B - <td>C - </tr> - <tr> - <td colspan="2">D</td> - <td>E</td> - </tr> - <tr> - <td>F</td> - <td colspan="2">G</td> - </tr> - </tbody> -</table></pre> - -<h3 id="CSS">CSS</h3> - -<pre class="brush: css">col.selected || td { +```css +col.selected || td { background: gray; color: white; font-weight: bold; -}</pre> - -<h3 id="Résultat">Résultat</h3> - -<p>{{EmbedLiveSample("Exemples", "100%")}}</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("CSS4 Selectors", "#the-column-combinator", "column combinator")}}</td> - <td>{{Spec2("CSS4 Selectors")}}</td> - <td>Définition initiale.</td> - </tr> - </tbody> -</table> +} +``` + +### Résultat + +{{EmbedLiveSample("Exemples", "100%")}} + +## Spécifications + +| Spécification | État | Commentaires | +| -------------------------------------------------------------------------------------------------------- | ------------------------------------ | -------------------- | +| {{SpecName("CSS4 Selectors", "#the-column-combinator", "column combinator")}} | {{Spec2("CSS4 Selectors")}} | Définition initiale. | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("javascript.builtins.Array.sort")}}</p> +{{Compat("javascript.builtins.Array.sort")}} -<h2 id="Voir_aussi">Voir aussi</h2> +## Voir aussi -<ul> - <li>{{HTMLElement("col")}}</li> - <li>{{HTMLElement("colgroup")}}</li> - <li>{{CSSxRef("grid")}}</li> -</ul> +- {{HTMLElement("col")}} +- {{HTMLElement("colgroup")}} +- {{CSSxRef("grid")}} |