From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/margin-inline/index.html | 107 ++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 files/ja/web/css/margin-inline/index.html (limited to 'files/ja/web/css/margin-inline') diff --git a/files/ja/web/css/margin-inline/index.html b/files/ja/web/css/margin-inline/index.html new file mode 100644 index 0000000000..18aedfb37f --- /dev/null +++ b/files/ja/web/css/margin-inline/index.html @@ -0,0 +1,107 @@ +--- +title: margin-inline +slug: Web/CSS/margin-inline +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - margin-inline + - margin-inline-end + - margin-inline-start +translation_of: Web/CSS/margin-inline +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

The margin-inlineCSS のプロパティで、論理的なインライン方向の先頭と末尾のマージンを設定します。これは要素の書字方向やテキストの向きに応じて物理的なマージンに変換されます。

+ +
/* <length> 値 */
+margin-inline: 10px 20px;  /* 絶対的な長さ */
+margin-inline: 1em 2em;    /* テキストの大きさに対する相対値 */
+margin-inline: 5% 2%;      /* 直近のブロックコンテナーの大きさに対する相対値 */
+margin-inline: 10px; /* 先頭と末尾の両方を設定 */
+
+/* キーワード値 */
+margin-inline: auto;
+
+/* グローバル値 */
+margin-inline: inherit;
+margin-inline: initial;
+margin-inline: unset;
+
+ +

これらの値は、 {{CSSxRef("margin-top")}} と {{CSSxRef("margin-bottom")}}、または {{CSSxRef("margin-right")}} と {{CSSxRef("margin-left")}} プロパティに、 {{CSSxRef("writing-mode")}}, {{CSSxRef("direction")}}, {{CSSxRef("text-orientation")}} で定義された値にしたがって対応します。

+ +

値は {{CSSxRef("margin-inline-start")}} と {{CSSxRef("margin-inline-end")}} で個別に設定することができます。ブロック方向のプロパティは {{CSSxRef("margin-block")}} で、 {{CSSxRef("margin-block-start")}} と {{CSSxRef("margin-block-end")}} を設定します。

+ +

構文

+ +

+ +

margin-inline プロパティは、 {{CSSxRef("margin-left")}} プロパティと同じ値を取ります。

+ +

形式文法

+ +
{{CSSSyntax}}
+ +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-rl;
+  margin-inline: 20px 40px;
+  background-color: #c8c800;
+}
+ +

{{EmbedLiveSample("Example", 140, 140)}}

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-margin-inline", "margin-inline")}}{{Spec2("CSS Logical Properties")}}初回定義
+ +

{{CSSInfo}}

+ +

ブラウザーの互換性

+ + + +

{{Compat("css.properties.margin-inline")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf