aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/ratio/index.html
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-09-17 20:58:15 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-12 07:57:33 +0200
commit149319bb8c7b1394a443f0877c3460cd362aa815 (patch)
treed534abb0cbc87d5e224836e9d6b888aa58564aa0 /files/fr/web/css/ratio/index.html
parenteb9de0363cb273b54d3f5402bbf4e3bc03c60971 (diff)
downloadtranslated-content-149319bb8c7b1394a443f0877c3460cd362aa815.tar.gz
translated-content-149319bb8c7b1394a443f0877c3460cd362aa815.tar.bz2
translated-content-149319bb8c7b1394a443f0877c3460cd362aa815.zip
move *.html to *.md
Diffstat (limited to 'files/fr/web/css/ratio/index.html')
-rw-r--r--files/fr/web/css/ratio/index.html108
1 files changed, 0 insertions, 108 deletions
diff --git a/files/fr/web/css/ratio/index.html b/files/fr/web/css/ratio/index.html
deleted file mode 100644
index cd2fc22936..0000000000
--- a/files/fr/web/css/ratio/index.html
+++ /dev/null
@@ -1,108 +0,0 @@
----
-title: <ratio>
-slug: Web/CSS/ratio
-tags:
- - CSS
- - Reference
- - Type
-translation_of: Web/CSS/ratio
----
-<div>{{CSSRef}}</div>
-
-<p>Le type de donnée CSS <strong><code>&lt;ratio&gt;</code></strong> permet de décrire les proportions <a href="/fr/docs/Web/CSS/Media_Queries">dans les <em>media queries</em></a> (N.D.T. pour « requête média » qui est moins usité). entre deux valeurs sans unité.</p>
-
-<h2 id="Syntaxe">Syntaxe</h2>
-
-<p>Une valeur de ce type se compose d'un entier strictement positif (type {{cssxref("&lt;integer&gt;")}}, suivi d'une barre oblique ('/', Unicode<code> U+002F SOLIDUS</code>) puis d'un second entier strictement positif (type {{cssxref("&lt;integer&gt;")}}). Il est possible d'avoir des espaces avant et après la barre oblique.</p>
-
-<h2 id="Exemples">Exemples</h2>
-
-<h3 id="Utiliser_dans_une_media_query">Utiliser dans une <em>media query</em></h3>
-
-<pre class="brush: css">@media screen and (min-aspect-ratio: 16/9) { … }</pre>
-
-<h3 id="Ratios_fréquemment_utilisés">Ratios fréquemment utilisés</h3>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col"> </th>
- <th scope="col">Ratio</th>
- <th scope="col">Utilisation</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td><img src="ratio4_3.png"></td>
- <td><code>4/3</code></td>
- <td>Format traditionnel utilisé par les télévisions au XX<sup>e</sup> siècle.</td>
- </tr>
- <tr>
- <td><img src="ratio16_9.png"></td>
- <td><code>16/9</code></td>
- <td>Format « moderne » des télévisions.</td>
- </tr>
- <tr>
- <td><img src="ratio1_1.85.png"></td>
- <td><code>185/100</code> = <code>91/50</code><br>
- <em>(les numérateurs et dénominateurs décimaux ne sont pas autorisés)</em></td>
- <td>Le format le plus utilisé pour la projection de films depuis les années 1960.</td>
- </tr>
- <tr>
- <td><img src="ratio1_2.39.png"></td>
- <td><code>239/100</code><br>
- <em>(les numérateurs et dénominateurs décimaux ne sont pas autorisés)</em></td>
- <td>Le format « large » utilisé pour projeter certains films (on parle de format anamorphique).</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Exemple_appliqué">Exemple appliqué</h2>
-
-<h3 id="CSS">CSS</h3>
-
-<pre class="brush: css">@media screen and (min-aspect-ratio: 1/1) {
- .exemple {
- background-color: palegreen;
- }
-}</pre>
-
-<h3 id="HTML">HTML</h3>
-
-<pre class="brush: html">&lt;p class="exemple"&gt;
- Essayez de m'étirer en longueur ou de me réduire en largeur
-&lt;/p&gt;</pre>
-
-<h3 id="Résultat">Résultat</h3>
-
-<p>{{EmbedLiveSample("Exemple_appliqué","300","300")}}</p>
-
-<h2 id="Spécifications">Spécifications</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Spécification</th>
- <th scope="col">État</th>
- <th scope="col">Commentaires</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('CSS3 Media Queries', '#values', '&lt;ratio&gt;')}}</td>
- <td>{{Spec2('CSS3 Media Queries')}}</td>
- <td>Définition initiale.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
-
-<p>{{Compat("css.types.ratio")}}</p>
-
-<h2 id="Voir_aussi">Voir aussi</h2>
-
-<ul>
- <li><a href="/fr/docs/Web/CSS/Media_Queries">Les <em>media queries</em> CSS</a></li>
- <li><a href="/fr/docs/Web/CSS/@media/aspect-ratio">La caractéristique média aspect-ratio</a></li>
-</ul>