aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/@media/device-height/index.md
blob: 3fdbf2c38f10da66850bd9f334c6c70daa4ac0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
title: device-height
slug: Web/CSS/@media/device-height
tags:
  - CSS
  - Caractéristique média
  - Déprécié
  - Reference
translation_of: Web/CSS/@media/device-height
---
<div>{{CSSRef}}{{deprecated_header}}</div>

<p><strong><code>device-height</code></strong> est une caractéristique média (cf. {{cssxref("@media")}}) dépréciée dont la valeur correspond à la hauteur de la surface de rendu pour l'appareil d'affichage.</p>

<h2 id="Syntaxe">Syntaxe</h2>

<p>La caractéristique <code>device-height</code> est définie comme une longueur (type  {{cssxref("&lt;length&gt;")}}). C'est une caractéristique d'intervalle ce qui signifie qu'on peut utiliser les variantes préfixées <strong><code>min-device-height</code></strong> et <code><strong>max-device-height</strong></code> afin d'utiliser des critères de minimum et maximum.</p>

<h2 id="Exemples">Exemples</h2>

<p>Ce fragment HTML applique une feuille de style spécifique pour les appareils dont la hauteur est inférieure à 800 pixels.</p>

<pre class="brush: html">&lt;link rel="stylesheet" media="screen and (max-device-height: 799px)" href="http://toto.truc.com/short-styles.css" /&gt;</pre>

<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('CSS4 Media Queries', '#device-height', 'device-height')}}</td>
   <td>{{Spec2('CSS4 Media Queries')}}</td>
   <td>Dépréciation dans la spécification de niveau 4 pour les requêtes média.</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Media Queries', '#device-height', 'device-height')}}</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.at-rules.media.device-height")}}</p>