aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorJb Audras <audrasjb@gmail.com>2021-07-27 07:34:47 +0200
committerGitHub <noreply@github.com>2021-07-27 07:34:47 +0200
commit932554bc0fb2be4228368c935dc14b9cf5cc3b9a (patch)
tree9ecda7d29c7c9751eeb8c7bc7fbb0cf100c0235d /files
parent4b4f9aaf2cc5b44702d2b1ad7dd7e4ff0a5191e4 (diff)
downloadtranslated-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.html66
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">&lt;video controls preload="metadata"&gt;
+ &lt;source src="video.mp4" type="video/mp4" /&gt;
+ &lt;source src="video.webm" type="video/webm" /&gt;
+ &lt;track label="Français" kind="subtitles" srclang="fr" src="subtitles.vtt" default&gt;
+&lt;/video&gt;</pre>
+
+<h3 id="webvtt">WebVTT</h3>
+
+<pre>FICHIER WEBVTT
+
+1
+00:00:03.500 --&gt; 00:00:05.000
+Voici le premier sous-titre
+
+2
+00:00:06.000 --&gt; 00:00:09.000
+Voici le second sous-titre
+
+3
+00:00:11.000 --&gt; 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>