From f7b3b4d1c5fd0e3c7c03630466f7e4e76788cb43 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Tue, 27 Jul 2021 10:14:42 +0200 Subject: French translation for CSS `:past` pseudo class reference (#1719) * Initial translation * Address few remaining issues spotted by @SphinxKnight --- files/fr/web/css/_colon_past/index.html | 66 +++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 files/fr/web/css/_colon_past/index.html (limited to 'files') diff --git a/files/fr/web/css/_colon_past/index.html b/files/fr/web/css/_colon_past/index.html new file mode 100644 index 0000000000..cc8a1a3cae --- /dev/null +++ b/files/fr/web/css/_colon_past/index.html @@ -0,0 +1,66 @@ +--- +title: ':past' +slug: 'Web/CSS/:past' +browser-compat: css.selectors.past +translation_of: Web/CSS/:past +--- +

{{CSSRef}}

+ +

Le sélecteur de pseudo-classe CSS :past est une pseudo-classe agissant dans la dimension temporelle qui cible n'importe quel élément apparaissant entièrement avant un élément correspondant à {{cssxref(":current")}}. Ce sélecteur peut par exemple servir dans le cas d'une vidéo ayant des sous-titres affichés à l'aide du format WebVTT.

+ +
:past(p, span) {
+  display: none;
+}
+ +

Syntaxe

+ +

{{csssyntax}}

+ +

Exemples

+ +

CSS

+ +
:past(p, span) {
+  display: none;
+}
+ +

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>
+ +

WebVTT

+ +
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
+
+ +

Spécifications

+ +

{{Specifications}}

+ +

Compatibilité des navigateurs

+ +

{{Compat}}

+ +

Voir aussi

+ + -- cgit v1.2.3-54-g00ecf