aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/max-height/index.md
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-16 10:16:30 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-24 08:28:57 +0900
commitb878d4a1cf8abdbaef200f64391ed6af2d80c2a6 (patch)
tree67646d52152e63c49ac2cbfc4f5971cbd283fc6f /files/ja/web/css/max-height/index.md
parent6d0dda3295c6f3ffc906e64b9706dcdb10a731f8 (diff)
downloadtranslated-content-b878d4a1cf8abdbaef200f64391ed6af2d80c2a6.tar.gz
translated-content-b878d4a1cf8abdbaef200f64391ed6af2d80c2a6.tar.bz2
translated-content-b878d4a1cf8abdbaef200f64391ed6af2d80c2a6.zip
CSS Box Sizing 関連のリファレンスを更新
- 2021/11/14 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/max-height/index.md')
-rw-r--r--files/ja/web/css/max-height/index.md141
1 files changed, 56 insertions, 85 deletions
diff --git a/files/ja/web/css/max-height/index.md b/files/ja/web/css/max-height/index.md
index fb379ee784..a2e309db37 100644
--- a/files/ja/web/css/max-height/index.md
+++ b/files/ja/web/css/max-height/index.md
@@ -3,34 +3,34 @@ title: max-height
slug: Web/CSS/max-height
tags:
- CSS
- - CSS Property
- - Layout
- - Maximum
- - Reference
- - dimensions
+ - CSS プロパティ
+ - レイアウト
+ - 最大
+ - リファレンス
+ - 寸法
- height
- limit
- max-height
- - 'recipe:css-property'
+ - recipe:css-property
- size
+browser-compat: css.properties.max-height
translation_of: Web/CSS/max-height
---
-<div>{{CSSRef}}</div>
+{{CSSRef}}
-<p><strong><code>max-height</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、要素の最大高を設定します。これは {{Cssxref("height")}} プロパティの<a href="/ja/docs/Web/CSS/used_value">使用値</a>が、 <code>max-height</code> に指定した値を上回ることを防ぎます。</p>
+**`max-height`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の最大高を設定します。これは {{Cssxref("height")}} プロパティの[使用値](/ja/docs/Web/CSS/used_value)が、 `max-height` に指定した値を上回ることを防ぎます。
-<div>{{EmbedInteractiveExample("pages/css/max-height.html")}}</div>
+{{EmbedInteractiveExample("pages/css/max-height.html")}}
-<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div>
+`max-height` は {{cssxref("height")}} を上書きしますが、 {{cssxref("min-height")}} は `max-height` を上書きします。
-<p><code>max-height</code> は {{cssxref("height")}} を上書きしますが、 {{cssxref("min-height")}} は <code>max-height</code> を上書きします。</p>
+## 構文
-<h2 id="Syntax">構文</h2>
-
-<pre class="brush:css no-line-numbers">/* &lt;length&gt; 値 */
+```css
+/* <length> 値 */
max-height: 3.5em;
-/* &lt;percentage&gt; 値 */
+/* <percentage> 値 */
max-height: 75%;
/* キーワード値 */
@@ -42,89 +42,60 @@ max-height: fit-content(20em);
/* グローバル値 */
max-height: inherit;
max-height: initial;
+max-height: revert;
max-height: unset;
-</pre>
+```
-<h3 id="Values">値</h3>
+### 値
-<dl>
- <dt>{{cssxref("&lt;length&gt;")}}</dt>
- <dd><code>max-height</code> を絶対的な値で定義します。</dd>
- <dt>{{cssxref("&lt;percentage&gt;")}}</dt>
- <dd><code>max-height</code> を包含ブロックの高さに対するパーセント値で定義します。</dd>
- <dt><code>none</code></dt>
- <dd>ボックスの寸法を制限しません。</dd>
- <dt><code>max-content</code></dt>
- <dd>内容物が推奨する <code>max-height</code> です。</dd>
- <dt><code>min-content</code></dt>
- <dd>内容物の最小の <code>max-height</code> です。</dd>
- <dt><code>fit-content({{cssxref("&lt;length-percentage&gt;")}})</code></dt>
- <dd>利用可能な空白を指定された引数で置き換えた <code>fit-content</code> 式を使用します。すなわち、 <code>min(max-content, max(min-content, <var>引数</var>))</code> です。</dd>
-</dl>
+- {{cssxref("&lt;length&gt;")}}
+ - : `max-height` を絶対的な値で定義します。
+- {{cssxref("&lt;percentage&gt;")}}
+ - : `max-height` を包含ブロックの高さに対するパーセント値で定義します。
+- `none`
+ - : ボックスの寸法を制限しません。
+- `max-content`
+ - : 内容物が推奨する `max-height` です。
+- `min-content`
+ - : 内容物の最小の `max-height` です。
+- `fit-content({{cssxref("&lt;length-percentage&gt;")}})`
+ - : 利用可能な空白を指定された引数で置き換えた `fit-content` 式を使用します。すなわち、 `min(max-content, max(min-content, 引数))` です。
-<h2 id="Accessibility_concerns">アクセシビリティの考慮</h2>
+## アクセシビリティの考慮
-<p>テキストを大きくするためにページを拡大したときに、 <code>max-height</code> を設定した要素が切り取られたり、他のコンテンツを覆い隠したりしないことを確認してください。</p>
+テキストを大きくするためにページを拡大したときに、 `max-height` を設定した要素が切り取られたり、他のコンテンツを覆い隠したりしないことを確認してください。
-<ul>
- <li><a href="/ja/docs/Web/Accessibility/Understanding_WCAG/Perceivable#Guideline_1.4_Make_it_easier_for_users_to_see_and_hear_content_including_separating_foreground_from_background">MDN WCAG を理解する ― ガイドライン 1.4 の解説</a></li>
- <li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-scale.html" rel="noopener">Understanding Success Criterion 1.4.4 | W3C Understanding WCAG 2.0</a></li>
-</ul>
+- [MDN WCAG を理解する ― ガイドライン 1.4 の解説](/ja/docs/Web/Accessibility/Understanding_WCAG/Perceivable#guideline_1.4_make_it_easier_for_users_to_see_and_hear_content_including_separating_foreground_from_background)
+- [Understanding Success Criterion 1.4.4 | W3C Understanding WCAG 2.0](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-scale.html)
-<h2 id="Formal_definition">公式定義</h2>
+## 公式定義
-<p>{{cssinfo}}</p>
+{{cssinfo}}
-<h2 id="Formal_syntax">形式文法</h2>
+## 形式文法
{{csssyntax}}
-<h2 id="Examples">例</h2>
+## 例
-<h3 id="Setting_max-height_using_percentage_and_keyword_values">パーセント値とキーワード値を用いた max-height の設定</h3>
+### パーセント値とキーワード値を用いた max-height の設定
-<pre class="brush: css">table { max-height: 75%; }
+```css
+table { max-height: 75%; }
form { max-height: none; }
-</pre>
-
-<h2 id="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 Sizing', '#width-height-keywords', 'max-height')}}</td>
- <td>{{Spec2('CSS4 Sizing')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('CSS3 Sizing', '#width-height-keywords', 'max-height')}}</td>
- <td>{{Spec2('CSS3 Sizing')}}</td>
- <td>キーワード <code>max-content</code>, <code>min-content</code>, <code>fit-content</code> を追加。</td>
- </tr>
- <tr>
- <td>{{SpecName('CSS2.1', 'visudet.html#min-max-heights', 'max-height')}}</td>
- <td>{{ Spec2('CSS2.1') }}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("css.properties.max-height")}}</p>
-
-<h2 id="See_also">関連情報</h2>
-
-<ul>
- <li><a href="/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model">ボックスモデル</a>、 {{cssxref("box-sizing")}}</li>
- <li>{{Cssxref("height")}}, {{Cssxref("min-height")}}</li>
- <li>対応する論理プロパティ: {{cssxref("max-inline-size")}}, {{cssxref("max-block-size")}}</li>
-</ul>
+```
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- [ボックスモデル](/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model)、 {{cssxref("box-sizing")}}
+- {{Cssxref("height")}}, {{Cssxref("min-height")}}
+- 対応する論理プロパティ: {{cssxref("max-inline-size")}}, {{cssxref("max-block-size")}}