diff options
author | Jb Audras <audrasjb@gmail.com> | 2021-07-27 07:34:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 07:34:47 +0200 |
commit | 932554bc0fb2be4228368c935dc14b9cf5cc3b9a (patch) | |
tree | 9ecda7d29c7c9751eeb8c7bc7fbb0cf100c0235d /files | |
parent | 4b4f9aaf2cc5b44702d2b1ad7dd7e4ff0a5191e4 (diff) | |
download | translated-content-932554bc0fb2be4228368c935dc14b9cf5cc3b9a.tar.gz translated-content-932554bc0fb2be4228368c935dc14b9cf5cc3b9a.tar.bz2 translated-content-932554bc0fb2be4228368c935dc14b9cf5cc3b9a.zip |
French translation for CSS `:current` pseudo class reference. (#1716)
* Initial translation
* move a parenthesis
* Small changes - good to go
Diffstat (limited to 'files')
-rw-r--r-- | files/fr/web/css/_colon_current/index.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/files/fr/web/css/_colon_current/index.html b/files/fr/web/css/_colon_current/index.html new file mode 100644 index 0000000000..b96560db91 --- /dev/null +++ b/files/fr/web/css/_colon_current/index.html @@ -0,0 +1,66 @@ +--- +title: ':current' +slug: 'Web/CSS/:current' +browser-compat: css.selectors.current +translation_of: Web/CSS/:current +--- +<p>{{CSSRef}}</p> + +<p>Le sélecteur de <a href="/fr/docs/Web/CSS/Pseudo-classes">pseudo-classe</a> <a href="/fr/docs/Web/CSS">CSS</a> <strong><code>:current</code></strong> est une pseudo-classe agissant dans la dimension temporelle et représentant l'élément actuellement affiché, ou un ancêtre de cet élément. Ce sélecteur peut par exemple servir dans le cas d'une vidéo ayant des sous-titres affichés à l'aide du format <a href="/fr/docs/Web/API/WebVTT_API">WebVTT</a>.</p> + +<pre class="brush: css">:current(p, span) { + background-color: yellow; +}</pre> + +<h2 id="syntax">Syntaxe</h2> + +<p>{{csssyntax}}</p> + +<h2 id="examples">Exemples</h2> + +<h3 id="css">CSS</h3> + +<pre class="brush: css">:current(p, span) { + background-color: yellow; +}</pre> + +<h3 id="html">HTML</h3> + +<pre class="brush: html"><video controls preload="metadata"> + <source src="video.mp4" type="video/mp4" /> + <source src="video.webm" type="video/webm" /> + <track label="Français" kind="subtitles" srclang="fr" src="subtitles.vtt" default> +</video></pre> + +<h3 id="webvtt">WebVTT</h3> + +<pre>FICHIER WEBVTT + +1 +00:00:03.500 --> 00:00:05.000 +Voici le premier sous-titre + +2 +00:00:06.000 --> 00:00:09.000 +Voici le second sous-titre + +3 +00:00:11.000 --> 00:00:19.000 +Voici le troisième sous-titre +</pre> + +<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><a href="/fr/docs/Web/API/WebVTT_API">Web Video Text Tracks Format (WebVTT)</a></li> + <li>{{cssxref(":past")}}</li> + <li>{{cssxref(":future")}}</li> +</ul> |