aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/@media/device-height/index.html
blob: c8d5a84353745387391378e7d1b7820f5b323143 (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
52
53
---
title: device-height
slug: Web/CSS/@media/device-height
tags:
  - '@media'
  - CSS
  - Deprecated
  - Reference
  - メディアクエリ
  - メディア特性
translation_of: Web/CSS/@media/device-height
---
<div>{{cssref}} {{deprecated_header}}</div>

<p><a href="/ja/docs/CSS">CSS</a><strong><code>device-height</code></strong> <a href="/ja/docs/Web/CSS/Media_Queries/Using_media_queries#Media_features">メディア特性</a>は、出力機器の描画面の高さを調べるために使用することができます。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<p><code>device-height</code> 特性は、 {{cssxref("&lt;length&gt;")}} 値として指定します。これは範囲の特性であり、つまり接頭辞の付いた <strong><code>min-device-height</code></strong> 及び <code><strong>max-device-height</strong></code> の変化形を使用して、それぞれ最小値と最大値をクエリすることができます。</p>

<h2 id="Example" name="Example"></h2>

<p>この HTML は、800ピクセルより短い機器に特別のスタイルシートを適用します。</p>

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

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('CSS4 Media Queries', '#device-height', 'device-height')}}</td>
   <td>{{Spec2('CSS4 Media Queries')}}</td>
   <td>メディアクエリレベル4で非推奨になりました。</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Media Queries', '#device-height', 'device-height')}}</td>
   <td>{{Spec2('CSS3 Media Queries')}}</td>
   <td>初回定義。</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>

<p>{{Compat("css.at-rules.media.device-height")}}</p>