--- 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")}}

関連情報