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/ja/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/ja/web/css/ratio')
-rw-r--r-- | files/ja/web/css/ratio/index.html | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/files/ja/web/css/ratio/index.html b/files/ja/web/css/ratio/index.html new file mode 100644 index 0000000000..dcd59c98ab --- /dev/null +++ b/files/ja/web/css/ratio/index.html @@ -0,0 +1,97 @@ +--- +title: <ratio> +slug: Web/CSS/ratio +tags: + - CSS + - CSS Data Type + - Data Type + - Layout + - Reference + - Web +translation_of: Web/CSS/ratio +--- +<p>{{CSSRef}}</p> + +<p><strong><code><ratio></code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/CSS_Types">データ型</a>で、<a href="/en-US/docs/Web/CSS/@media/aspect-ratio">アスペクト比</a>を<a href="/en-US/docs/Web/CSS/Media_Queries">メディアクエリ</a>内で記述するために使用し、2つの単位のない値で比率を記述します。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<p>メディアクエリ Level 3 では、<code><ratio></code> データ型は、厳密な正の {{cssxref("<integer>")}}、スラッシュ ('/', Unicode の <code>U+002F SOLIDUS</code>)、2 番目の厳密な正の {{cssxref("<integer>")}} の順に記述します。スラッシュの前後にはスペースを入れてもかまいません。最初の数値は幅を、2番目の数値は高さを表します。</p> + +<p>メディアクエリ Level 4 では、<code><ratio></code> データ型が更新され、厳密な正の {{cssxref("<number>")}}、スラッシュ ('/', Unicode の <code>U+002F SOLIDUS</code>)、2 番目の厳密な正の {{cssxref("<number>")}} の順に記述します。それに加えて、単独の {{cssxref("<number>")}} の値が許可されています。</p> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Use_in_a_media_query" name="Use_in_a_media_query">メディアクエリでの使用</h3> + +<pre class="brush: css notranslate">@media screen and (min-aspect-ratio: 16/9) { ... }</pre> + +<h3 id="Common_aspect_ratios" name="Common_aspect_ratios">一般的なアスペクト比</h3> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col"></th> + <th scope="col">比率</th> + <th scope="col">用例</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>20 世紀における伝統的な TV 画面の形状です。</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>現代の「ワイド画面」の TV の形状です。</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></td> + <td>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></td> + <td>「ワイドスクリーン」、アナモルフィックな映画スクリーンの形状です。</td> + </tr> + </tbody> +</table> + +<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', '#values', '<ratio>')}}</td> + <td>{{Spec2('CSS4 Media Queries')}}</td> + <td></td> + </tr> + <tr> + <td>{{SpecName('CSS3 Media Queries', '#values', '<ratio>')}}</td> + <td>{{Spec2('CSS3 Media Queries')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("css.types.ratio")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><code><a href="/ja/docs/Web/CSS/@media/aspect-ratio">aspect-ratio</a></code> メディア特性</li> +</ul> |