blob: 1957f3d3ef5722cced7a6fb8840ec7e8140d78ff (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
---
title: max-height
slug: conflicting/Web/CSS/@viewport_516ab4b0283b5b2231fb657505e22440
tags:
- '@viewport'
- CSS
- CSS Descriptor
- Reference
translation_of: Web/CSS/@viewport
translation_of_original: Web/CSS/@viewport/max-height
original_slug: Web/CSS/@viewport/max-height
---
<div>{{CSSRef}}</div>
<p>CSS の <code><strong>max-height</strong></code> 記述子は、{{cssxref("@viewport")}} @-規則で定義された文書のビューポートの最大の高さを指定します。</p>
<p>最大の高さの制約を考慮して、最初の高さは初期ビューポートの高さにできるだけ近い値に設定されます。</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="brush: css">/* Keyword value */
max-height: auto;
/* <length> values */
max-height: 400px;
max-height: 50em;
max-height: 20cm;
/* <percentage> value */
max-height: 75%;</pre>
<h3 id="Values" name="Values">値</h3>
<dl>
<dt><code>auto</code></dt>
<dd>使用する値は他の CSS 記述子の値から計算されます。</dd>
<dt><code><length></code></dt>
<dd>負ではない絶対値または相対値。</dd>
<dt><code><percentage></code></dt>
<dd>垂直方向の長さについて、初期ビューポートの高さである表示倍率1.0 に対するパーセンテージの値。値は負ではない必要があります。</dd>
</dl>
<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
{{csssyntax}}
<h2 id="Example" name="Example">例</h2>
<pre class="brush: css">@viewport {
max-height: 600px;
}</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('CSS3 Device', '#descdef-viewport-max-height', '"max-height" descriptor')}}</td>
<td>{{Spec2('CSS3 Device')}}</td>
<td>初期定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
<p>{{Compat("css.at-rules.viewport.max-height")}}</p>
|