--- title: inset-inline-end slug: Web/CSS/inset-inline-end tags: - CSS - CSS Logical Property - CSS Property - Experimental - NeedsContent - Reference - 'recipe:css-property' translation_of: Web/CSS/inset-inline-end ---
{{CSSRef}}

inset-inline-endCSS のプロパティで、要素における行末からの論理的な内部位置を定義し、要素の書字方向やテキストの向きに従って物理的なオフセットに対応付けられます。 {{cssxref("top")}}, {{cssxref("right")}}, {{cssxref("bottom")}}, {{cssxref("left")}} のいずれかのプロパティに、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値に従って対応します。

/* <length> 値 */
inset-inline-end: 3px;
inset-inline-end: 2.4em;

/* 包含ブロックの幅または高さに対する <percentage> 値 */
inset-inline-end: 10%;

/* キーワード値 */
inset-inline-end: auto;

/* グローバル値 */
inset-inline-end: inherit;
inset-inline-end: initial;
inset-inline-end: unset;

{{cssxref("inset-inline-start")}} と inset-inline-end の一括指定は {{cssxref("inset-inline")}} です。

構文

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

公式定義

{{cssinfo}}

形式文法

{{csssyntax}}

インライン方向の末尾のオフセットの設定

HTML

<div>
  <p class="exampleText">テキストの例</p>
</div>

CSS

div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}

.exampleText {
  writing-mode: vertical-rl;
  position: relative;
  inset-inline-end: 20px;
  background-color: #c8c800;
}

結果

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

仕様書

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

ブラウザーの互換性

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

関連情報