inset-block-start
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-block-start
は CSS のプロパティで、要素における先頭からの論理的なオフセットを定義し、要素の書字方向やテキストの向きに従って物理的な内部位置に対応付けられます。 top
, right
, bottom
, left
のいずれかのプロパティに、 writing-mode
, direction
, text-orientation
で定義された値に従って対応します。
試してみましょう
構文
css
/* <length> 値 */
inset-block-start: 3px;
inset-block-start: 2.4em;
/* 包含ブロックの幅または高さに対する <percentage> 値 */
inset-block-start: 10%;
/* キーワード値 */
inset-block-start: auto;
/* グローバル値 */
inset-block-start: inherit;
inset-block-start: initial;
inset-block-start: revert;
inset-block-start: revert-layer;
inset-block-start: unset;
値
inset-block-start
プロパティは left
プロパティと同じ値を取ります。
公式定義
形式文法
inset-block-start =
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-lr;
position: relative;
inset-block-start: 20px;
background-color: #c8c800;
}
結果
仕様書
Specification |
---|
CSS Logical Properties and Values Level 1 # position-properties |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
- 内部位置を定義する他のプロパティ:
inset-block-end
,inset-inline-start
,inset-inline-end
- 対応する物理的プロパティ:
top
,right
,bottom
,left
writing-mode
,direction
,text-orientation