From 75c9efb03dd63fb59adde624552b6d4d04e178d7 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 17 Nov 2021 01:34:23 +0900 Subject: CSS 論理的プロパティのその他プロパティの変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/inset-block-start/index.html | 107 -------------------------- 1 file changed, 107 deletions(-) delete mode 100644 files/ja/web/css/inset-block-start/index.html (limited to 'files/ja/web/css/inset-block-start/index.html') diff --git a/files/ja/web/css/inset-block-start/index.html b/files/ja/web/css/inset-block-start/index.html deleted file mode 100644 index 08dceab431..0000000000 --- a/files/ja/web/css/inset-block-start/index.html +++ /dev/null @@ -1,107 +0,0 @@ ---- -title: inset-block-start -slug: Web/CSS/inset-block-start -tags: - - CSS - - CSS Logical Property - - CSS Property - - Experimental - - Reference - - 'recipe:css-property' -translation_of: Web/CSS/inset-block-start ---- -
{{CSSRef}}
- -

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

- -
/* <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: unset;
-
- - -

構文

- -

- -

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

- -

公式定義

- -

{{cssinfo}}

- -

形式文法

- -{{csssyntax}} - -

- -

ブロック方向の先頭のオフセットの設定

- -

HTML

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

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  position: relative;
-  inset-block-start: 20px;
-  background-color: #c8c800;
-}
- -

結果

- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.inset-block-start")}}

- -

関連情報

- - -- cgit v1.2.3-54-g00ecf