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-end/index.html | 109 ++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 files/ja/web/css/margin-inline-end/index.html (limited to 'files/ja/web/css/margin-inline-end') diff --git a/files/ja/web/css/margin-inline-end/index.html b/files/ja/web/css/margin-inline-end/index.html new file mode 100644 index 0000000000..5b2ed400c4 --- /dev/null +++ b/files/ja/web/css/margin-inline-end/index.html @@ -0,0 +1,109 @@ +--- +title: margin-inline-end +slug: Web/CSS/margin-inline-end +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - NeedsContent + - Reference + - margin-inline + - margin-inline-end +translation_of: Web/CSS/margin-inline-end +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

margin-inline-endCSS のプロパティで、要素のインライン方向の論理的な末尾側のマージンを定義し、それが要素の書字方向やテキストの方向に応じて物理的なマージンに対応付けられます。これは {{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-bottom")}}, {{cssxref("margin-left")}} の何れかのプロパティに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
{{EmbedInteractiveExample("pages/css/margin-inline-end.html")}}
+ + + +

構文

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

関連プロパティとして、要素の他のマージンを定義する {{cssxref("margin-block-start")}}, {{cssxref("margin-block-end")}}, {{cssxref("margin-inline-start")}} があります。

+ +

{{cssinfo}}

+ +

+ +

margin-inline-end プロパティは {{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-lr;
+  margin-inline-end: 20px;
+  background-color: #c8c800;
+}
+ +

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

+ +

仕様書

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

ブラウザーの互換性

+ + + +

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

+ +

関連情報

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