diff options
Diffstat (limited to 'files/ja/web/css/max-width/index.md')
-rw-r--r-- | files/ja/web/css/max-width/index.md | 178 |
1 files changed, 82 insertions, 96 deletions
diff --git a/files/ja/web/css/max-width/index.md b/files/ja/web/css/max-width/index.md index 89feb27342..b5dba1255b 100644 --- a/files/ja/web/css/max-width/index.md +++ b/files/ja/web/css/max-width/index.md @@ -3,27 +3,34 @@ title: max-width slug: Web/CSS/max-width tags: - CSS - - CSS Property - CSS プロパティ - - Reference + - レイアウト + - Limits + - 最大 + - リファレンス + - 寸法 + - max-width + - recipe:css-property + - size + - width +browser-compat: css.properties.max-width translation_of: Web/CSS/max-width --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><strong><code>max-width</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、要素の最大幅を設定します。これは {{Cssxref("width")}} プロパティの<a href="/ja/docs/Web/CSS/used_value">使用値</a>が、 <code>max-width</code> で指定した値を上回ることを防ぎます。</p> +**`max-width`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の最大幅を設定します。これは {{Cssxref("width")}} プロパティの[使用値](/ja/docs/Web/CSS/used_value)が、 `max-width` で指定した値を上回ることを防ぎます。 -<div>{{EmbedInteractiveExample("pages/css/max-width.html")}}</div> +{{EmbedInteractiveExample("pages/css/max-width.html")}} -<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div> +`max-width` は {{cssxref("width")}} を上書きしますが、 {{cssxref("min-width")}} は `max-width` を上書きします。 -<p><code>max-width</code> は {{cssxref("width")}} を上書きしますが、 {{cssxref("min-width")}} は <code>max-width</code> を上書きします。</p> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush:css no-line-numbers notranslate">/* <length> 値 */ +```css +/* <length> 値 */ max-width: 3.5em; -/* <percentage> 値 */ +/* <percentage> 値 */ max-width: 75%; /* キーワード値 */ @@ -35,45 +42,60 @@ max-width: fit-content(20em); /* グローバル値 */ max-width: inherit; max-width: initial; +max-width: revert; max-width: unset; -</pre> - -<h3 id="Values" name="Values">値</h3> - -<dl> - <dt>{{cssxref("<length>")}}</dt> - <dd><code>max-width</code> を絶対的な値で定義します。</dd> - <dt>{{cssxref("<percentage>")}}</dt> - <dd><code>max-width</code> を包含ブロックの幅に対するパーセント値で定義します。</dd> - <dt><code>auto</code></dt> - <dd>ブラウザーは指定された要素の <code>max-width</code> を計算して選択します。</dd> - <dt><code>none</code></dt> - <dd>ボックスの寸法を制限しません。</dd> - <dt><code>max-content</code></dt> - <dd>内容物が推奨する <code>max-width</code> です。</dd> - <dt><code>min-content</code></dt> - <dd>内容物の最小の <code>max-width</code> です。</dd> - <dt><code>fit-content({{cssxref("<length-percentage>")}})</code></dt> - <dd>利用可能な空白を指定された引数で置き換えた <code>fit-content</code> 式を使用します。すなわち、 <code>min(max-content, max(min-content, <var>引数</var>))</code> です。</dd> -</dl> - -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +``` + +### 値 + +- {{cssxref("<length>")}} + - : `max-width` を絶対的な値で定義します。 +- {{cssxref("<percentage>")}} + - : `max-width` を包含ブロックの幅に対するパーセント値で定義します。 +- `none` + - : ボックスの寸法を制限しません。 +- `max-content` + - : 内容物が推奨する `max-width` です。 +- `min-content` + - : 内容物の最小の `max-width` です。 +- `fit-content({{cssxref("<length-percentage>")}})` + - : 利用可能な空白を指定された引数で置き換えた `fit-content` 式を使用します。すなわち、 `min(max-content, max(min-content, 引数))` です。 + +## アクセシビリティの考慮 + +ページを拡大縮小して文字サイズを拡大した際に、 `max-width` を設定した要素が他のコンテンツを切り捨てたり妨げたりしないことを確認してください。 + +- [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) + +## 公式定義 + +{{cssinfo}} + +## 形式文法 {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> +## 例 + +<h3 id="Setting_max_width_in_pixels">最大幅をピクセル単位で設定</h3> + +この例では、 "child" の幅が 150 ピクセルか "parent" の幅のどちらか小さい方になります。 -<p>この例では、 "child" の幅が150ピクセルか "parent" の幅のどちらか小さい方になります。</p> +#### HTML -<div id="basic-max-width-demo"> -<pre class="brush: html notranslate"><div id="parent"> - <div id="child"> +```html +<div id="parent"> + <div id="child"> Fusce pulvinar vestibulum eros, sed luctus ex lobortis quis. - </div> -</div> -</pre> + </div> +</div> +``` + +#### CSS -<pre class="brush: css notranslate">#parent { +```css +#parent { background: lightblue; width: 300px; } @@ -83,58 +105,22 @@ max-width: unset; width: 100%; max-width: 150px; } -</pre> -</div> +``` + +#### 結果 + +{{EmbedLiveSample("Setting_max_width_in_pixels", 350, 100)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 -<p>{{EmbedLiveSample("basic-max-width-demo", 350, 100)}}</p> - -<h2 id="Accessibility_concerns" name="Accessibility_concerns">アクセシビリティの考慮事項</h2> - -<p>ページを拡大縮小して文字サイズを拡大した際に、 <code>max-width</code> を設定した要素が他のコンテンツを切り捨てたり妨げたりしないことを確認してください。</p> - -<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> - -<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 Sizing', '#width-height-keywords', 'max-width')}}</td> - <td>{{Spec2('CSS4 Sizing')}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName('CSS3 Sizing', '#width-height-keywords', 'max-width')}}</td> - <td>{{Spec2('CSS3 Sizing')}}</td> - <td>キーワード <code>max-content</code>, <code>min-content</code>, <code>fit-content</code>, <code>fill-available</code> を追加。</td> - </tr> - <tr> - <td>{{ SpecName('CSS2.1', 'visudet.html#min-max-widths', 'max-width') }}</td> - <td>{{ Spec2('CSS2.1') }}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<p>{{cssinfo}}</p> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.max-width")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li><a href="/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model" title="en/CSS/box_model">The box model</a>, {{cssxref("box-sizing")}}</li> - <li>{{cssxref("width")}}, {{cssxref("min-width")}}</li> -</ul> +- [ボックスモデル](/ja/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model), {{cssxref("box-sizing")}} +- {{cssxref("width")}}, {{cssxref("min-width")}} +- 対応する論理的プロパティ: {{cssxref("max-inline-size")}}, {{cssxref("max-block-size")}} |