diff options
author | Jb Audras <audrasjb@gmail.com> | 2021-07-27 06:50:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 06:50:25 +0200 |
commit | c53c05cd5c3e7eafdfeb437d02ddad4c9e00ae3d (patch) | |
tree | 674f3fe3148561afcb52b58a63d84d881d78ebfa /files/fr/web/css | |
parent | ad402a9c7727753e158607678e2a853351b75414 (diff) | |
download | translated-content-c53c05cd5c3e7eafdfeb437d02ddad4c9e00ae3d.tar.gz translated-content-c53c05cd5c3e7eafdfeb437d02ddad4c9e00ae3d.tar.bz2 translated-content-c53c05cd5c3e7eafdfeb437d02ddad4c9e00ae3d.zip |
French translation for `accent-color` CSS property reference (#1706)
* Initial translation
* Fix translation_of issue
* Address issues spotted by the reviewer on another PR :)
* Fix typo as per reviewer comment
Diffstat (limited to 'files/fr/web/css')
-rw-r--r-- | files/fr/web/css/accent-color/index.html | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/files/fr/web/css/accent-color/index.html b/files/fr/web/css/accent-color/index.html new file mode 100644 index 0000000000..99717b6404 --- /dev/null +++ b/files/fr/web/css/accent-color/index.html @@ -0,0 +1,88 @@ +--- +title: accent-color +slug: Web/CSS/accent-color +browser-compat: css.properties.accent-color +translation_of: Web/CSS/accent-color +--- +<div>{{CSSRef}}{{SeeCompatTable}}</div> + +<p>La propriété <a href="/fr/docs/Web/CSS">CSS</a> <strong><code>accent-color</code></strong> définit la couleur d'accentuation ({{Glossary("accent")}}) des éléments. Une accentuation est présente sur des éléments HTML tels que des {{HTMLElement("input")}} de type <code><a href="/fr/docs/Web/HTML/Element/input/checkbox">checkbox</a></code> ou <code><a href="/fr/docs/Web/HTML/Element/input/radio">radio</a></code>.</p> + +<h2 id="Syntax">Syntaxe</h2> + +<pre class="brush: css no-line-numbers">/* Valeurs avec un mot-clé */ +accent-color: auto; + +/* Valeurs de <color> */ +accent-color: red; +accent-color: #5729e9; +accent-color: rgb(0, 200, 0); +accent-color: hsl(228, 4%, 24%); + +/* Valeurs globales */ +accent-color: inherit; +accent-color: initial; +accent-color: revert; +accent-color: unset;</pre> + +<h3 id="Values">Valeurs</h3> + +<dl> + <dt><code>auto</code></dt> + <dd>Représente une couleur déterminée par l'agent utilisateur, qui devrait correspondre à la couleur d'accentuation de la plateforme, s'il y en a une. + </dd> + <dt>{{cssxref("<color>")}}</dt> + <dd>Spécifie la couleur à utiliser en tant que couleur d'accentuation.</dd> +</dl> + +<h2 id="Formal_definition">Définition formelle</h2> + +<p>{{cssinfo}}</p> + +<h2 id="Formal_syntax">Syntaxe formelle</h2> + +<p>{{csssyntax}}</p> + +<h2 id="Examples">Exemples</h2> + +<h3 id="Setting_a_custom_accent_color">Définir une couleur d'accentuation personnalisée</h3> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><input type="checkbox" checked /> +<input type="checkbox" class="custom" checked /></pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush: css">input { + accent-color: auto; + display: block; + width: 30px; + height: 30px; +} + +input.custom { + accent-color: rebeccapurple; +} +</pre> + +<h4 id="Result">Résultat</h4> + +<p>{{EmbedLiveSample('Setting_a_custom_accent_color', 500, 200)}}</p> + +<h2 id="Specifications">Spécifications</h2> + +<p>{{Specifications}}</p> + +<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2> + +<p>{{Compat}}</p> + +<h2 id="See_also">Voir aussi</h2> + +<ul> + <li>L'élément {{HTMLElement("input")}}</li> + <li><a href="/fr/docs/Web/HTML/Applying_color">Appliquer des couleurs aux éléments HTML grâce à CSS</a></li> + <li>Le type de donnée {{cssxref("<color>")}}</li> + <li>Les autres propriétés relatives aux couleurs : {{cssxref("color")}}, {{cssxref("background-color")}}, {{cssxref("border-color")}}, {{cssxref("outline-color")}}, {{cssxref("text-decoration-color")}}, {{cssxref("text-emphasis-color")}}, {{cssxref("text-shadow")}}, {{cssxref("caret-color")}} et {{cssxref("column-rule-color")}}</li> +</ul> |