diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/css/ratio | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/css/ratio')
-rw-r--r-- | files/fr/web/css/ratio/index.html | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/files/fr/web/css/ratio/index.html b/files/fr/web/css/ratio/index.html new file mode 100644 index 0000000000..51d9786b28 --- /dev/null +++ b/files/fr/web/css/ratio/index.html @@ -0,0 +1,110 @@ +--- +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><ratio></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("<integer>")}}, suivi d'une barre oblique ('/', Unicode<code> U+002F SOLIDUS</code>) puis d'un second entier strictement positif (type {{cssxref("<integer>")}}). 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 alt="Ratio4_3.png" class="default internal" src="/@api/deki/files/5714/=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 alt="Ratio16_9.png" src="/@api/deki/files/5711/=Ratio16_9.png"></td> + <td><code>16/9</code></td> + <td>Format « moderne » des télévisions.</td> + </tr> + <tr> + <td><img alt="Ratio1_1.85.png" src="/@api/deki/files/5712/=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 alt="Ratio1_2.39.png" src="/@api/deki/files/5713/=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"><p class="exemple"> + Essayez de m'étirer en longueur ou de me réduire en largeur +</p></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', '<ratio>')}}</td> + <td>{{Spec2('CSS3 Media Queries')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<div class="hidden">Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et à nous envoyer une<em>pull request</em>.</div> + +<p>{{Compat("css.types.ratio")}}</p> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li><a class="internal" 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> |