aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/max-inline-size
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-16 22:52:26 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-28 02:23:26 +0900
commit7f9cc6de0a0d289fc95597089260abcdb5abcf8e (patch)
tree58aa9dd9d46775050050bfc40d002d3f8bc921fb /files/ja/web/css/max-inline-size
parentb2dc12a85f5414464594621c500e1c13ee8dab8e (diff)
downloadtranslated-content-7f9cc6de0a0d289fc95597089260abcdb5abcf8e.tar.gz
translated-content-7f9cc6de0a0d289fc95597089260abcdb5abcf8e.tar.bz2
translated-content-7f9cc6de0a0d289fc95597089260abcdb5abcf8e.zip
CSS 論理的プロパティの寸法のプロパティを更新
- 2021/11/14 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/max-inline-size')
-rw-r--r--files/ja/web/css/max-inline-size/index.md93
1 files changed, 40 insertions, 53 deletions
diff --git a/files/ja/web/css/max-inline-size/index.md b/files/ja/web/css/max-inline-size/index.md
index 05189f14c3..6f7b123f69 100644
--- a/files/ja/web/css/max-inline-size/index.md
+++ b/files/ja/web/css/max-inline-size/index.md
@@ -4,34 +4,34 @@ slug: Web/CSS/max-inline-size
tags:
- CSS
- CSS Logical Properties
- - CSS Logical Property
- - CSS Property
+ - CSS 論理的プロパティ
+ - CSS プロパティ
- Element size
- Experimental
- - Reference
+ - リファレンス
- Text Direction
- Writing Mode
- max-inline-size
- - 'recipe:css-property'
+ - recipe:css-property
+browser-compat: css.properties.max-inline-size
translation_of: Web/CSS/max-inline-size
---
-<div>{{CSSRef}}</div>
+{{CSSRef}}
-<p><span class="seoSummary"><strong><code>max-inline-size</code></strong> は <a href="/ja/docs/Web/CSS" title="CSS">CSS</a> のプロパティで、書字方向に応じて要素ブロックの水平または垂直方向の最大の寸法を定義します。これは {{cssxref("max-width")}} または {{cssxref("max-height")}} のどちらかのプロパティと、 {{cssxref("writing-mode")}} の値に応じて対応します。</span></p>
+**`max-inline-size`** は [CSS](/ja/docs/Web/CSS) のプロパティで、書字方向に応じて要素ブロックの水平または垂直方向の最大の寸法を定義します。これは {{cssxref("max-width")}} または {{cssxref("max-height")}} のどちらかのプロパティと、 {{cssxref("writing-mode")}} の値に応じて対応します。
-<p>書字方向が垂直方向であった場合、 <code>max-inline-size</code> の値は要素の最大の高さに対応します。そうでなければ、要素の最大幅に対応します。関連プロパティとして、 {{cssxref("max-block-size")}} が要素のもう一方の寸法を定義します。</p>
+書字方向が垂直方向であった場合、 `max-inline-size` の値は要素の最大の高さに対応します。そうでなければ、要素の最大幅に対応します。関連プロパティとして、 {{cssxref("max-block-size")}} が要素のもう一方の寸法を定義します。
-<div>{{EmbedInteractiveExample("pages/css/max-inline-size.html")}}</div>
+{{EmbedInteractiveExample("pages/css/max-inline-size.html")}}
-<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p>
+## 構文
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="brush:css no-line-numbers notranslate">/* &lt;length&gt; 値 */
+```css
+/* <length> 値 */
max-inline-size: 300px;
max-inline-size: 25em;
-/* &lt;percentage&gt; 値 */
+/* <percentage> 値 */
max-inline-size: 75%;
/* キーワード値 */
@@ -43,69 +43,56 @@ max-inline-size: fit-content(20em);
/* グローバル値 */
max-inline-size: inherit;
max-inline-size: initial;
+max-inline-size: revert;
max-inline-size: unset;
-</pre>
+```
-<h3 id="Values" name="Values">値</h3>
+### 値
-<p><code>max-inline-size</code> プロパティは {{cssxref("max-width")}} および {{cssxref("max-height")}} の各プロパティと同じ値を取ります。</p>
+`max-inline-size` プロパティは {{cssxref("max-width")}} および {{cssxref("max-height")}} の各プロパティと同じ値を取ります。
-<h2 id="Formal_definition" name="Formal_definition">公式定義</h2>
+## 公式定義
-<p>{{cssinfo}}</p>
+{{cssinfo}}
-<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2>
+## 形式文法
{{csssyntax}}
-<h2 id="Examples" name="Examples">例</h2>
+## 例
-<h3 id="Setting_maximum_inline_size_in_pixels" name="Setting_maximum_inline_size_in_pixels">インライン方向の最大寸法をピクセル単位で設定</h3>
+<h3 id="Setting_maximum_inline_size_in_pixels">インライン方向の最大寸法をピクセル単位で設定</h3>
-<h4 id="HTML">HTML</h4>
+#### HTML
-<pre class="brush: html notranslate">&lt;p class="exampleText"&gt;Example text&lt;/p&gt;
-</pre>
+```html
+<p class="exampleText">Example text</p>
+```
-<h4 id="CSS">CSS</h4>
+#### CSS
-<pre class="brush: css notranslate">.exampleText {
+```css
+.exampleText {
writing-mode: vertical-rl;
background-color: yellow;
block-size: 100%;
max-inline-size: 200px;
-}</pre>
+}
+```
-<h4 id="Result" name="Result">結果</h4>
+#### 結果
-<p>{{EmbedLiveSample("Setting_maximum_inline_size_in_pixels")}}</p>
+{{EmbedLiveSample("Setting_maximum_inline_size_in_pixels")}}
-<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("CSS Logical Properties", "#propdef-max-inline-size", "max-inline-size")}}</td>
- <td>{{Spec2("CSS Logical Properties")}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
+{{Specifications}}
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+## ブラウザーの互換性
-<p>{{Compat("css.properties.max-inline-size")}}</p>
+{{Compat}}
-<h2 id="See_also" name="See_also">関連情報</h2>
+## 関連情報
-<ul>
- <li>対応付けされる物理的プロパティ: {{cssxref("max-width")}} および {{cssxref("max-height")}}</li>
- <li>{{cssxref("writing-mode")}}</li>
-</ul>
+- 対応付けされる物理的プロパティ: {{cssxref("max-width")}} および {{cssxref("max-height")}}
+- {{cssxref("writing-mode")}}