diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-09-17 20:15:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 20:15:31 +0200 |
commit | 3335211db9ecb67dc0ccd9c4a7c1eb607ffe359f (patch) | |
tree | 09fe8f8a5fae5235b62918e8b7161fd34480b8d0 /files/fr/web/css/css_transforms | |
parent | 3518481e9190f19bbf81741704f45cb3c1761758 (diff) | |
download | translated-content-3335211db9ecb67dc0ccd9c4a7c1eb607ffe359f.tar.gz translated-content-3335211db9ecb67dc0ccd9c4a7c1eb607ffe359f.tar.bz2 translated-content-3335211db9ecb67dc0ccd9c4a7c1eb607ffe359f.zip |
Prepare CSS section for Markdown conversion (#2307)
* Removes summary / seoSummary classes
* Remove div class=hidden and some notranslate
* Remove hidden paragraphs for live sample
* Remove hidden paragraphs for live sample - take 2
* Remove other hidden div and p - updated w/ en-US when necessary
* Remove ids
* Remove notranslate class
* Fix typo which broke build
* remove div class='index'
* remove useless <span style=...>
* remove non typographical sups
* remove non typographical subs
* remove blockindicator and fix some div.note
* fix build :/
* remove useless classes
* fix build - again :x
* fix unhandled elements 1/N + embedlivesample build fail
* fix div.warning
* Fix fixable flaws - hoping to reduce error conversion
* Remove unecessary images (same as en-US)
* fix div notes
* fix warnings
* fix some dl handling
* fix dls
* Fix a bunch of conversion errors
* rm unhandled figures
* Fix other set of issues and revamp easing-function page
* Fix some one-offs conversion errors (incl. deki files)
* fix the rest of one-off conversion issues
* Fix last dl standing
Diffstat (limited to 'files/fr/web/css/css_transforms')
-rw-r--r-- | files/fr/web/css/css_transforms/index.html | 2 | ||||
-rw-r--r-- | files/fr/web/css/css_transforms/using_css_transforms/index.html | 8 |
2 files changed, 4 insertions, 6 deletions
diff --git a/files/fr/web/css/css_transforms/index.html b/files/fr/web/css/css_transforms/index.html index 66190eedac..be8a54dc82 100644 --- a/files/fr/web/css/css_transforms/index.html +++ b/files/fr/web/css/css_transforms/index.html @@ -16,7 +16,6 @@ translation_of: Web/CSS/CSS_Transforms <h3 id="Propriétés">Propriétés</h3> -<div class="index"> <ul> <li>{{cssxref("backface-visibility")}}</li> <li>{{cssxref("perspective")}}</li> @@ -29,7 +28,6 @@ translation_of: Web/CSS/CSS_Transforms <li>{{cssxref("transform-style")}}</li> <li>{{cssxref("translate")}}</li> </ul> -</div> <h3 id="Types_de_donnée">Types de donnée</h3> diff --git a/files/fr/web/css/css_transforms/using_css_transforms/index.html b/files/fr/web/css/css_transforms/using_css_transforms/index.html index 93716e66d0..e52bf437be 100644 --- a/files/fr/web/css/css_transforms/using_css_transforms/index.html +++ b/files/fr/web/css/css_transforms/using_css_transforms/index.html @@ -19,7 +19,7 @@ original_slug: Web/CSS/CSS_Transforms/Utilisation_des_transformations_CSS <p>En modifiant l'espace des coordonnées, les <strong>transformations CSS</strong> permettent de changer la position d'un contenu affecté sans perturber le flux normal. Elles sont implémentées en utilisant un ensemble de propriétés CSS qui vous permettre d'appliquer des transformations affines aux éléments HTML. Ces transformations incluent la rotation, l'inclinaison et la translation à la fois dans le plan ou dans un espace 3D.</p> <div class="warning"> -<p><strong>Attention !</strong> Seuls les éléments positionnés selon <a href="/fr/docs/Web/CSS/Modèle_de_boîte_CSS">le modèle de boîtes</a> peuvent être transformés. Pour simplifier, on peut se souvenir que tout élément avec <code>display: block</code> est positionné selon le modèle de boîtes.</p> +<p><strong>Attention :</strong> Seuls les éléments positionnés selon <a href="/fr/docs/Web/CSS/CSS_Box_Model">le modèle de boîtes</a> peuvent être transformés. Pour simplifier, on peut se souvenir que tout élément avec <code>display: block</code> est positionné selon le modèle de boîtes.</p> </div> <h2 id="Propriétés_des_transformations_CSS">Propriétés des transformations CSS</h2> @@ -37,7 +37,7 @@ original_slug: Web/CSS/CSS_Transforms/Utilisation_des_transformations_CSS <p>Voici une version originale du logo MDN :</p> -<p><img alt="MDN Logo" src="https://mdn.mozillademos.org/files/12539/Screen%20Shot%202016-02-16%20at%2015.53.54.png" style="height: 106px; width: 110px;"></p> +<p><img alt="MDN Logo" src="screen_shot_2016-02-16_at_15.53.54.png"></p> <h3 id="Rotation">Rotation</h3> @@ -45,7 +45,7 @@ original_slug: Web/CSS/CSS_Transforms/Utilisation_des_transformations_CSS <pre class="brush: html"><img style="transform: rotate(90deg); transform-origin: bottom left;" - src="https://mdn.mozillademos.org/files/12539/Screen%20Shot%202016-02-16%20at%2015.53.54.png"> + src="screen_shot_2016-02-16_at_15.53.54.png"> </pre> <p>{{EmbedLiveSample('Rotation','auto',240)}}</p> @@ -56,7 +56,7 @@ original_slug: Web/CSS/CSS_Transforms/Utilisation_des_transformations_CSS <pre class="brush: html"><img style="transform: skewx(10deg) translatex(150px); transform-origin: bottom left;" - src="https://mdn.mozillademos.org/files/12539/Screen%20Shot%202016-02-16%20at%2015.53.54.png"> + src="screen_shot_2016-02-16_at_15.53.54.png"> </pre> <p>{{EmbedLiveSample('Distorsion_et_translation')}}</p> |