From 3749b3f9c22c5ca41293cf770cfb6aab216e3ead Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 17 Nov 2021 02:16:00 +0900 Subject: CSS 論理的プロパティに関するその他のプロパティを更新 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/11/16 時点の英語版に同期 --- files/ja/web/css/inset-block/index.md | 123 +++++++++++++++------------------- 1 file changed, 55 insertions(+), 68 deletions(-) (limited to 'files/ja/web/css/inset-block') diff --git a/files/ja/web/css/inset-block/index.md b/files/ja/web/css/inset-block/index.md index a9104b99a2..48cdd351c3 100644 --- a/files/ja/web/css/inset-block/index.md +++ b/files/ja/web/css/inset-block/index.md @@ -3,23 +3,25 @@ title: inset-block slug: Web/CSS/inset-block tags: - CSS - - CSS Logical Property - - CSS Property - - Experimental - - Reference - - 'recipe:css-shorthand-property' + - CSS 論理的プロパティ + - CSS プロパティ + - 実験的 + - リファレンス + - recipe:css-shorthand-property +browser-compat: css.properties.inset-block translation_of: Web/CSS/inset-block --- -
{{CSSRef}}
+{{CSSRef}} -

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

+**`inset-block`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素におけるブロック方向の先頭および末尾からの論理的な内部位置を定義し、要素の書字方向やテキストの向きに従って物理的な内部位置に対応付けられます。 {{cssxref("top")}} と {{cssxref("bottom")}}、または {{cssxref("right")}} と {{cssxref("left")}} のいずれかのプロパティに、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値に従って対応します。 -
/* <length> 値 */
+```css
+/*  値 */
 inset-block: 3px 10px;
 inset-block: 2.4em 3em;
 inset-block: 10px; /* 値が先頭と末尾の両方に適用される */
 
-/* 包含ブロックの幅または高さに対する <percentage> 値 */
+/* 包含ブロックの幅または高さに対する  値 */
 inset-block: 10% 5%;
 
 /* キーワード値 */
@@ -28,46 +30,47 @@ inset-block: auto;
 /* グローバル値 */
 inset-block: inherit;
 inset-block: initial;
+inset-block: revert;
 inset-block: unset;
-
+``` -

構成要素のプロパティ

+## 構成要素のプロパティ -

このプロパティは以下の CSS プロパティの一括指定です。

+このプロパティは以下の CSS プロパティの一括指定です。 - +- {{cssxref("inset-block-end")}} +- {{cssxref("inset-block-start")}} -

構文

+## 構文 -

+### 値 -

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

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

公式定義

+## 公式定義 -

{{cssinfo}}

+{{cssinfo}} -

形式文法

+## 形式文法 {{csssyntax}} -

+## 例 -

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

+

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

-

HTML

+#### HTML -
<div>
-  <p class="exampleText">テキストの例</p>
-</div>
-
+```html +
+

テキストの例

+
+``` -

CSS

+#### CSS -
div {
+```css
+div {
   background-color: yellow;
   width: 120px;
   height: 120px;
@@ -78,40 +81,24 @@ inset-block: unset;
   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")}}

- -

関連情報

- - +} +``` + +#### 結果 + +{{EmbedLiveSample("Setting_block_start_and_end_offsets", 140, 140)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- 対応する物理的プロパティ: {{cssxref("top")}}, {{cssxref("right")}}, {{cssxref("bottom")}}, {{cssxref("left")}} +- 対応する物理的な一括指定: {{cssxref("inset")}} +- 対応するインライン方向の一括指定: {{cssxref("inset-inline")}} +- {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} -- cgit v1.2.3-54-g00ecf