--- title: margin-block-end slug: Web/CSS/margin-block-end tags: - CSS - CSS Logical Property - CSS Property - CSS プロパティ - CSS 論理的プロパティ - Experimental - NeedsContent - Reference - margin-block - margin-block-end translation_of: Web/CSS/margin-block-end ---
margin-block-end
は CSS のプロパティで、要素のインライン方向の論理的な先頭側のマージンを定義し、それが要素の書字方向やテキストの方向に応じて物理的なマージンに対応付けられます。
このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 https://github.com/mdn/interactive-examples をクローンしてプルリクエストを送信してください。
/* <length> 値 */ margin-block-end: 10px; /* 絶対的な長さ */ margin-block-end: 1em; /* テキストの大きさに対する相対値 */ margin-block-end: 5%; /* 直近のブロックコンテナーの大きさに対する相対値 */ /* キーワード値 */ margin-block-end: auto; /* グローバル値 */ margin-block-end: inherit; margin-block-end: initial; margin-block-end: unset;
これは {{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-bottom")}}, {{cssxref("margin-left")}} の何れかのプロパティに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。
関連プロパティとして、要素の他のマージンを定義する {{cssxref("margin-block-start")}}, {{cssxref("margin-inline-start")}}, {{cssxref("margin-inline-end")}} があります。
{{cssinfo}}
margin-block-end
プロパティは {{cssxref("margin-left")}} プロパティと同じ値を取ります。
<div> <p class="exampleText">Example text</p> </div>
div { background-color: yellow; width: 120px; height: 120px; } .exampleText { writing-mode: vertical-lr; margin-block-end: 20px; background-color: #c8c800; }
{{EmbedLiveSample("Example", 140, 140)}}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("CSS Logical Properties", "#propdef-margin-block-end", "margin-block-end")}} | {{Spec2("CSS Logical Properties")}} | 初回定義 |
{{Compat("css.properties.margin-block-end")}}