inset-inline-end
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.
inset-inline-end
は CSS のプロパティで、要素における行末からの論理的な内部位置を定義し、要素の書字方向やテキストの向きに従って物理的なオフセットに対応付けられます。 top
, right
, bottom
, left
のいずれかのプロパティに、 writing-mode
, direction
, text-orientation
で定義された値に従って対応します。
試してみましょう
構文
css
/* <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: revert;
inset-inline-end: revert-layer;
inset-inline-end: unset;
inset-inline-start
と inset-inline-end
の一括指定は inset-inline
です。
値
inset-inline-end
プロパティは left
プロパティと同じ値を取ります。
公式定義
形式文法
inset-inline-end =
auto |
<length-percentage>
<length-percentage> =
<length> |
<percentage>
例
インライン方向の末尾のオフセットの設定
HTML
html
<div>
<p class="exampleText">テキストの例</p>
</div>
CSS
css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-rl;
position: relative;
inset-inline-end: 20px;
background-color: #c8c800;
}
結果
仕様書
Specification |
---|
CSS Logical Properties and Values Level 1 # position-properties |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
- 内部位置を定義する他のプロパティ:
inset-block-start
,inset-block-end
,inset-inline-start
- 対応する物理的プロパティ:
top
,right
,bottom
,left
writing-mode
,direction
,text-orientation