--- title: inset-block slug: Web/CSS/inset-block tags: - CSS - CSS Logical Property - CSS Property - Experimental - Reference - 'recipe:css-shorthand-property' translation_of: Web/CSS/inset-block ---
inset-block
は CSS のプロパティで、要素におけるブロック方向の先頭および末尾からの論理的な内部位置を定義し、要素の書字方向やテキストの向きに従って物理的な内部位置に対応付けられます。 {{cssxref("top")}} と {{cssxref("bottom")}}、または {{cssxref("right")}} と {{cssxref("left")}} のいずれかのプロパティに、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値に従って対応します。
/* <length> 値 */ inset-block: 3px 10px; inset-block: 2.4em 3em; inset-block: 10px; /* 値が先頭と末尾の両方に適用される */ /* 包含ブロックの幅または高さに対する <percentage> 値 */ inset-block: 10% 5%; /* キーワード値 */ inset-block: auto; /* グローバル値 */ inset-block: inherit; inset-block: initial; inset-block: unset;
このプロパティは以下の CSS プロパティの一括指定です。
inset-block
プロパティは {{cssxref("left")}} プロパティと同じ値を取ります。
{{cssinfo}}
{{csssyntax}}
<div> <p class="exampleText">テキストの例</p> </div>
div { background-color: yellow; width: 120px; height: 120px; } .exampleText { writing-mode: vertical-lr; position: relative; inset-block: 20px 50px; background-color: #c8c800; }
{{EmbedLiveSample("Setting_block_start_and_end_offsets", 140, 140)}}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("CSS Logical Properties", "#propdef-inset-block", "inset-block")}} | {{Spec2("CSS Logical Properties")}} | 初回定義 |
{{Compat("css.properties.inset-block")}}