diff options
Diffstat (limited to 'files/ja/web/css/@media/device-height')
-rw-r--r-- | files/ja/web/css/@media/device-height/index.html | 53 | ||||
-rw-r--r-- | files/ja/web/css/@media/device-height/index.md | 41 |
2 files changed, 41 insertions, 53 deletions
diff --git a/files/ja/web/css/@media/device-height/index.html b/files/ja/web/css/@media/device-height/index.html deleted file mode 100644 index c8d5a84353..0000000000 --- a/files/ja/web/css/@media/device-height/index.html +++ /dev/null @@ -1,53 +0,0 @@ ---- -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("<length>")}} 値として指定します。これは範囲の特性であり、つまり接頭辞の付いた <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"><link rel="stylesheet" media="screen and (max-device-height: 799px)" href="http://foo.bar.com/short-styles.css" /></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> diff --git a/files/ja/web/css/@media/device-height/index.md b/files/ja/web/css/@media/device-height/index.md new file mode 100644 index 0000000000..ea585127b3 --- /dev/null +++ b/files/ja/web/css/@media/device-height/index.md @@ -0,0 +1,41 @@ +--- +title: device-height +slug: Web/CSS/@media/device-height +tags: + - '@media' + - CSS + - 非推奨 + - リファレンス + - メディアクエリー + - メディア特性 +browser-compat: css.at-rules.media.device-height +translation_of: Web/CSS/@media/device-height +--- +{{CSSRef}} {{deprecated_header}} + +[CSS](/ja/docs/Web/CSS) の **`device-height`** [メディア特性](/ja/docs/Web/CSS/@media#メディア特性)は、出力機器の描画面の高さを調べるために使用することができます。 + +## 構文 + +`device-height` 特性は、 {{cssxref("<length>")}} 値として指定します。これは範囲の特性であり、つまり接頭辞の付いた **`min-device-height`** および **`max-device-height`** の変化形を使用して、それぞれ最小値と最大値をクエリーすることができます。 + +## 例 + +この HTML は、800 ピクセルより低い機器に特別のスタイルシートを適用します。 + +```html +<link rel="stylesheet" media="screen and (max-device-height: 799px)" href="http://foo.bar.com/short-styles.css" /> +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [メディアクエリーの使用](/ja/docs/Web/CSS/Media_Queries/Using_media_queries) +- [@media](/ja/docs/Web/CSS/@media) |