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

margin-block-startCSS のプロパティで、要素のインライン方向の論理的な先頭側のマージンを定義し、それが要素の書字方向やテキストの方向に応じて物理的なマージンに対応付けられます。

+ +
{{EmbedInteractiveExample("pages/css/margin-block-start.html")}}
+ + + +

構文

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

これは {{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-bottom")}}, {{cssxref("margin-left")}} の何れかのプロパティに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +

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

+ +

{{cssinfo}}

+ +

+ +

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

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

+ +

仕様書

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

ブラウザーの互換性

+ + + +

{{Compat("css.properties.margin-block-start")}}

+ +

関連情報

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