From 4118e39aa1248b8266355954fb7cdae3ece621f1 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 28 Sep 2021 22:36:49 +0900 Subject: border-inline-* プロパティの変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/border-inline-color/index.html | 92 ----------------- files/ja/web/css/border-inline-color/index.md | 92 +++++++++++++++++ .../ja/web/css/border-inline-end-color/index.html | 100 ------------------- files/ja/web/css/border-inline-end-color/index.md | 100 +++++++++++++++++++ .../ja/web/css/border-inline-end-style/index.html | 102 ------------------- files/ja/web/css/border-inline-end-style/index.md | 102 +++++++++++++++++++ .../ja/web/css/border-inline-end-width/index.html | 101 ------------------- files/ja/web/css/border-inline-end-width/index.md | 101 +++++++++++++++++++ files/ja/web/css/border-inline-end/index.html | 109 --------------------- files/ja/web/css/border-inline-end/index.md | 109 +++++++++++++++++++++ .../web/css/border-inline-start-color/index.html | 100 ------------------- .../ja/web/css/border-inline-start-color/index.md | 100 +++++++++++++++++++ .../web/css/border-inline-start-style/index.html | 102 ------------------- .../ja/web/css/border-inline-start-style/index.md | 102 +++++++++++++++++++ .../web/css/border-inline-start-width/index.html | 101 ------------------- .../ja/web/css/border-inline-start-width/index.md | 101 +++++++++++++++++++ files/ja/web/css/border-inline-start/index.html | 109 --------------------- files/ja/web/css/border-inline-start/index.md | 109 +++++++++++++++++++++ files/ja/web/css/border-inline-style/index.html | 94 ------------------ files/ja/web/css/border-inline-style/index.md | 94 ++++++++++++++++++ files/ja/web/css/border-inline-width/index.html | 94 ------------------ files/ja/web/css/border-inline-width/index.md | 94 ++++++++++++++++++ 22 files changed, 1104 insertions(+), 1104 deletions(-) delete mode 100644 files/ja/web/css/border-inline-color/index.html create mode 100644 files/ja/web/css/border-inline-color/index.md delete mode 100644 files/ja/web/css/border-inline-end-color/index.html create mode 100644 files/ja/web/css/border-inline-end-color/index.md delete mode 100644 files/ja/web/css/border-inline-end-style/index.html create mode 100644 files/ja/web/css/border-inline-end-style/index.md delete mode 100644 files/ja/web/css/border-inline-end-width/index.html create mode 100644 files/ja/web/css/border-inline-end-width/index.md delete mode 100644 files/ja/web/css/border-inline-end/index.html create mode 100644 files/ja/web/css/border-inline-end/index.md delete mode 100644 files/ja/web/css/border-inline-start-color/index.html create mode 100644 files/ja/web/css/border-inline-start-color/index.md delete mode 100644 files/ja/web/css/border-inline-start-style/index.html create mode 100644 files/ja/web/css/border-inline-start-style/index.md delete mode 100644 files/ja/web/css/border-inline-start-width/index.html create mode 100644 files/ja/web/css/border-inline-start-width/index.md delete mode 100644 files/ja/web/css/border-inline-start/index.html create mode 100644 files/ja/web/css/border-inline-start/index.md delete mode 100644 files/ja/web/css/border-inline-style/index.html create mode 100644 files/ja/web/css/border-inline-style/index.md delete mode 100644 files/ja/web/css/border-inline-width/index.html create mode 100644 files/ja/web/css/border-inline-width/index.md (limited to 'files/ja/web/css') diff --git a/files/ja/web/css/border-inline-color/index.html b/files/ja/web/css/border-inline-color/index.html deleted file mode 100644 index e927735680..0000000000 --- a/files/ja/web/css/border-inline-color/index.html +++ /dev/null @@ -1,92 +0,0 @@ ---- -title: border-inline-color -slug: Web/CSS/border-inline-color -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference -translation_of: Web/CSS/border-inline-color ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-start-colorCSS のプロパティで、要素の論理的なインライン方向の先頭側の境界色を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界色に対応付けられます。これは {{cssxref("border-top-color")}} および {{cssxref("border-bottom-color")}}、または {{cssxref("border-right-color")}} および {{cssxref("border-left-color")}} のどちらかに対応し、どちらに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -
border-inline-color: yellow;
-border-inline-color: #F5F6F7;
-
- -

関連するプロパティとしては、 {{cssxref("border-block-start-color")}}, {{cssxref("border-block-end-color")}}, {{cssxref("border-inline-end-color")}} が要素の他の方向の境界色を定義します。

- -

{{cssinfo}}

- -

構文

- -

- -
-
<'color'>
-
境界の色です。 {{cssxref("color")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 10px solid blue;
-  border-inline-color: red;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-color")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-color/index.md b/files/ja/web/css/border-inline-color/index.md new file mode 100644 index 0000000000..e927735680 --- /dev/null +++ b/files/ja/web/css/border-inline-color/index.md @@ -0,0 +1,92 @@ +--- +title: border-inline-color +slug: Web/CSS/border-inline-color +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference +translation_of: Web/CSS/border-inline-color +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-start-colorCSS のプロパティで、要素の論理的なインライン方向の先頭側の境界色を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界色に対応付けられます。これは {{cssxref("border-top-color")}} および {{cssxref("border-bottom-color")}}、または {{cssxref("border-right-color")}} および {{cssxref("border-left-color")}} のどちらかに対応し、どちらに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
border-inline-color: yellow;
+border-inline-color: #F5F6F7;
+
+ +

関連するプロパティとしては、 {{cssxref("border-block-start-color")}}, {{cssxref("border-block-end-color")}}, {{cssxref("border-inline-end-color")}} が要素の他の方向の境界色を定義します。

+ +

{{cssinfo}}

+ +

構文

+ +

+ +
+
<'color'>
+
境界の色です。 {{cssxref("color")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 10px solid blue;
+  border-inline-color: red;
+}
+ +

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

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-color", "border-inline-color")}}{{Spec2("CSS Logical Properties")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-color")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-end-color/index.html b/files/ja/web/css/border-inline-end-color/index.html deleted file mode 100644 index 191a36b576..0000000000 --- a/files/ja/web/css/border-inline-end-color/index.html +++ /dev/null @@ -1,100 +0,0 @@ ---- -title: border-inline-end-color -slug: Web/CSS/border-inline-end-color -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-color - - border-inline-end - - border-inline-end-color -translation_of: Web/CSS/border-inline-end-color ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-end-colorCSS のプロパティで、要素の論理的なブロックの終端側の境界色を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界色に対応付けられます。これは {{cssxref("border-top-color")}}, {{cssxref("border-right-color")}}, {{cssxref("border-bottom-color")}}, {{cssxref("border-left-color")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -
{{EmbedInteractiveExample("pages/css/border-inline-end-color.html")}}
- - - -

構文

- -
border-inline-end-color: rebeccapurple;
-border-inline-end-color: #663399;
-
- -

関連するプロパティとしては、 {{cssxref("border-block-start-color")}}, {{cssxref("border-block-end-color")}}, {{cssxref("border-inline-start-color")}} が要素の他の境界色を定義します。

- -

{{cssinfo}}

- -

- -
-
<'color'>
-
境界の色です。 {{cssxref("color")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 10px solid blue;
-  border-inline-end-color: red;
-}
- -

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

- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-end-color", "border-inline-end-color")}}{{Spec2("CSS Logical Properties")}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-end-color")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-end-color/index.md b/files/ja/web/css/border-inline-end-color/index.md new file mode 100644 index 0000000000..191a36b576 --- /dev/null +++ b/files/ja/web/css/border-inline-end-color/index.md @@ -0,0 +1,100 @@ +--- +title: border-inline-end-color +slug: Web/CSS/border-inline-end-color +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - border-inline + - border-inline-color + - border-inline-end + - border-inline-end-color +translation_of: Web/CSS/border-inline-end-color +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-end-colorCSS のプロパティで、要素の論理的なブロックの終端側の境界色を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界色に対応付けられます。これは {{cssxref("border-top-color")}}, {{cssxref("border-right-color")}}, {{cssxref("border-bottom-color")}}, {{cssxref("border-left-color")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
{{EmbedInteractiveExample("pages/css/border-inline-end-color.html")}}
+ + + +

構文

+ +
border-inline-end-color: rebeccapurple;
+border-inline-end-color: #663399;
+
+ +

関連するプロパティとしては、 {{cssxref("border-block-start-color")}}, {{cssxref("border-block-end-color")}}, {{cssxref("border-inline-start-color")}} が要素の他の境界色を定義します。

+ +

{{cssinfo}}

+ +

+ +
+
<'color'>
+
境界の色です。 {{cssxref("color")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 10px solid blue;
+  border-inline-end-color: red;
+}
+ +

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

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-end-color", "border-inline-end-color")}}{{Spec2("CSS Logical Properties")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-end-color")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-end-style/index.html b/files/ja/web/css/border-inline-end-style/index.html deleted file mode 100644 index dcdf13a5a3..0000000000 --- a/files/ja/web/css/border-inline-end-style/index.html +++ /dev/null @@ -1,102 +0,0 @@ ---- -title: border-inline-end-style -slug: Web/CSS/border-inline-end-style -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-end - - border-inline-end-style - - border-inline-style -translation_of: Web/CSS/border-inline-end-style ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-end-styleCSS のプロパティで、要素の論理的なインライン方向の終端側の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応付けられます。これは {{cssxref("border-top-style")}}, {{cssxref("border-right-style")}}, {{cssxref("border-bottom-style")}}, {{cssxref("border-left-style")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -
{{EmbedInteractiveExample("pages/css/border-inline-end-style.html")}}
- - - -

構文

- -
/* <'border-style'> 値 */
-border-inline-end-style: dashed;
-border-inline-end-style: dotted;
-border-inline-end-style: groove;
-
- -

関連するプロパティとしては、 {{cssxref("border-inline-start-style")}}, {{cssxref("border-inline-start-style")}}, {{cssxref("border-inline-end-style")}} が要素の他の境界のスタイルを定義します。

- -

{{cssinfo}}

- -

- -
-
<'border-style'>
-
境界のスタイルです。 {{cssxref("border-style")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 5px solid blue;
-  border-inline-end-style: dashed;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.border-block-end-style")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-end-style/index.md b/files/ja/web/css/border-inline-end-style/index.md new file mode 100644 index 0000000000..dcdf13a5a3 --- /dev/null +++ b/files/ja/web/css/border-inline-end-style/index.md @@ -0,0 +1,102 @@ +--- +title: border-inline-end-style +slug: Web/CSS/border-inline-end-style +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - border-inline + - border-inline-end + - border-inline-end-style + - border-inline-style +translation_of: Web/CSS/border-inline-end-style +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-end-styleCSS のプロパティで、要素の論理的なインライン方向の終端側の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応付けられます。これは {{cssxref("border-top-style")}}, {{cssxref("border-right-style")}}, {{cssxref("border-bottom-style")}}, {{cssxref("border-left-style")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
{{EmbedInteractiveExample("pages/css/border-inline-end-style.html")}}
+ + + +

構文

+ +
/* <'border-style'> 値 */
+border-inline-end-style: dashed;
+border-inline-end-style: dotted;
+border-inline-end-style: groove;
+
+ +

関連するプロパティとしては、 {{cssxref("border-inline-start-style")}}, {{cssxref("border-inline-start-style")}}, {{cssxref("border-inline-end-style")}} が要素の他の境界のスタイルを定義します。

+ +

{{cssinfo}}

+ +

+ +
+
<'border-style'>
+
境界のスタイルです。 {{cssxref("border-style")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 5px solid blue;
+  border-inline-end-style: dashed;
+}
+ +

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

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-end-style", "border-block-end-style")}}{{Spec2("CSS Logical Properties")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("css.properties.border-block-end-style")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-end-width/index.html b/files/ja/web/css/border-inline-end-width/index.html deleted file mode 100644 index a61fcddaa5..0000000000 --- a/files/ja/web/css/border-inline-end-width/index.html +++ /dev/null @@ -1,101 +0,0 @@ ---- -title: border-inline-end-width -slug: Web/CSS/border-inline-end-width -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-end - - border-inline-end-width - - border-inline-width -translation_of: Web/CSS/border-inline-end-width ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-end-widthCSS のプロパティで、要素の論理的なインライン方向の終端側の境界の幅を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界の幅に対応付けられます。これは {{cssxref("border-top-width")}}, {{cssxref("border-right-width")}}, {{cssxref("border-bottom-width")}}, {{cssxref("border-left-width")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -
{{EmbedInteractiveExample("pages/css/border-inline-end-width.html")}}
- - - -

構文

- -
/* <'border-width'> 値 */
-border-inline-end-width: 2px;
-border-inline-end-width: thick;
-
- -

関連するプロパティとしては、 {{cssxref("border-block-start-width")}}, {{cssxref("border-block-end-width")}}, {{cssxref("border-inline-start-width")}} が要素の他の境界の幅を定義します。

- -

{{cssinfo}}

- -

- -
-
<'border-width'>
-
境界の幅です。 {{cssxref("border-width")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 1px solid blue;
-  border-inline-end-width: 5px;
-}
- -

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

- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-end-width", "border-inline-end-width")}}{{Spec2("CSS Logical Properties")}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-end-width")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-end-width/index.md b/files/ja/web/css/border-inline-end-width/index.md new file mode 100644 index 0000000000..a61fcddaa5 --- /dev/null +++ b/files/ja/web/css/border-inline-end-width/index.md @@ -0,0 +1,101 @@ +--- +title: border-inline-end-width +slug: Web/CSS/border-inline-end-width +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - border-inline + - border-inline-end + - border-inline-end-width + - border-inline-width +translation_of: Web/CSS/border-inline-end-width +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-end-widthCSS のプロパティで、要素の論理的なインライン方向の終端側の境界の幅を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界の幅に対応付けられます。これは {{cssxref("border-top-width")}}, {{cssxref("border-right-width")}}, {{cssxref("border-bottom-width")}}, {{cssxref("border-left-width")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
{{EmbedInteractiveExample("pages/css/border-inline-end-width.html")}}
+ + + +

構文

+ +
/* <'border-width'> 値 */
+border-inline-end-width: 2px;
+border-inline-end-width: thick;
+
+ +

関連するプロパティとしては、 {{cssxref("border-block-start-width")}}, {{cssxref("border-block-end-width")}}, {{cssxref("border-inline-start-width")}} が要素の他の境界の幅を定義します。

+ +

{{cssinfo}}

+ +

+ +
+
<'border-width'>
+
境界の幅です。 {{cssxref("border-width")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 1px solid blue;
+  border-inline-end-width: 5px;
+}
+ +

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

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-end-width", "border-inline-end-width")}}{{Spec2("CSS Logical Properties")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-end-width")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-end/index.html b/files/ja/web/css/border-inline-end/index.html deleted file mode 100644 index f788b59958..0000000000 --- a/files/ja/web/css/border-inline-end/index.html +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: border-inline-end -slug: Web/CSS/border-inline-end -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-end - - border-inline-end-color - - border-inline-end-style - - border-inline-end-width -translation_of: Web/CSS/border-inline-end ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-endCSS のプロパティで、個々の論理的なインライン方向の末尾側境界のプロパティ値を、スタイルシート内の単一の場所で設定するための一括指定プロパティです。

- -
{{EmbedInteractiveExample("pages/css/border-inline-end.html")}}
- - - -

構文

- -
border-inline-end: 1px;
-border-inline-end: 2px dashed;
-border-inline-end: medium dashed blue;
-
- -

border-inline-end は1つ以上の {{cssxref("border-inline-end-width")}}, {{cssxref("border-inline-end-style")}}, {{cssxref("border-inline-end-color")}} の値の組み合わせを使用することができます。対応付けられる物理的な境界は、書字方向やテキストの向きによって決まります。これは {{cssxref("border-top")}}, {{cssxref("border-right")}}, {{cssxref("border-bottom")}}, {{cssxref("border-left")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -

関連するプロパティとしては、 {{cssxref("border-block-start")}}, {{cssxref("border-block-end")}}, {{cssxref("border-inline-start")}} が要素の他の境界を定義します。

- -

{{cssinfo}}

- -

- -

border-inline-end は以下の値のうちの1つ以上を任意の順序で指定します。

- -
-
<'border-width'>
-
境界の幅です。 {{cssxref("border-width")}} を参照してください。
-
<'border-style'>
-
境界線のスタイルです。 {{cssxref("border-style")}} を参照してください。
-
<'color'>
-
境界の色です。 {{cssxref("color")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-rl;
-  border-inline-end: 5px dashed blue;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-end")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-end/index.md b/files/ja/web/css/border-inline-end/index.md new file mode 100644 index 0000000000..f788b59958 --- /dev/null +++ b/files/ja/web/css/border-inline-end/index.md @@ -0,0 +1,109 @@ +--- +title: border-inline-end +slug: Web/CSS/border-inline-end +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - border-inline + - border-inline-end + - border-inline-end-color + - border-inline-end-style + - border-inline-end-width +translation_of: Web/CSS/border-inline-end +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-endCSS のプロパティで、個々の論理的なインライン方向の末尾側境界のプロパティ値を、スタイルシート内の単一の場所で設定するための一括指定プロパティです。

+ +
{{EmbedInteractiveExample("pages/css/border-inline-end.html")}}
+ + + +

構文

+ +
border-inline-end: 1px;
+border-inline-end: 2px dashed;
+border-inline-end: medium dashed blue;
+
+ +

border-inline-end は1つ以上の {{cssxref("border-inline-end-width")}}, {{cssxref("border-inline-end-style")}}, {{cssxref("border-inline-end-color")}} の値の組み合わせを使用することができます。対応付けられる物理的な境界は、書字方向やテキストの向きによって決まります。これは {{cssxref("border-top")}}, {{cssxref("border-right")}}, {{cssxref("border-bottom")}}, {{cssxref("border-left")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +

関連するプロパティとしては、 {{cssxref("border-block-start")}}, {{cssxref("border-block-end")}}, {{cssxref("border-inline-start")}} が要素の他の境界を定義します。

+ +

{{cssinfo}}

+ +

+ +

border-inline-end は以下の値のうちの1つ以上を任意の順序で指定します。

+ +
+
<'border-width'>
+
境界の幅です。 {{cssxref("border-width")}} を参照してください。
+
<'border-style'>
+
境界線のスタイルです。 {{cssxref("border-style")}} を参照してください。
+
<'color'>
+
境界の色です。 {{cssxref("color")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-rl;
+  border-inline-end: 5px dashed blue;
+}
+ +

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

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-end", "border-inline-end")}}{{Spec2("CSS Logical Properties")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-end")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-start-color/index.html b/files/ja/web/css/border-inline-start-color/index.html deleted file mode 100644 index bfe03cfdc8..0000000000 --- a/files/ja/web/css/border-inline-start-color/index.html +++ /dev/null @@ -1,100 +0,0 @@ ---- -title: border-inline-start-color -slug: Web/CSS/border-inline-start-color -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-color - - border-inline-start - - border-inline-start-color -translation_of: Web/CSS/border-inline-start-color ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-start-colorCSS のプロパティで、要素の論理的なインライン方向の先頭側の境界色を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界色に対応付けられます。これは {{cssxref("border-top-color")}}, {{cssxref("border-right-color")}}, {{cssxref("border-bottom-color")}}, {{cssxref("border-left-color")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -
{{EmbedInteractiveExample("pages/css/border-inline-start-color.html")}}
- - - -

構文

- -
border-inline-start-color: red;
-border-inline-start-color: #ee4141;
-
- -

関連するプロパティとしては、 {{cssxref("border-block-start-color")}}, {{cssxref("border-block-end-color")}}, {{cssxref("border-inline-end-color")}} が要素の他の境界色を定義します。

- -

{{cssinfo}}

- -

- -
-
<'color'>
-
境界の色です。 {{cssxref("color")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 10px solid blue;
-  border-inline-start-color: red;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-start-color")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-start-color/index.md b/files/ja/web/css/border-inline-start-color/index.md new file mode 100644 index 0000000000..bfe03cfdc8 --- /dev/null +++ b/files/ja/web/css/border-inline-start-color/index.md @@ -0,0 +1,100 @@ +--- +title: border-inline-start-color +slug: Web/CSS/border-inline-start-color +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - border-inline + - border-inline-color + - border-inline-start + - border-inline-start-color +translation_of: Web/CSS/border-inline-start-color +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-start-colorCSS のプロパティで、要素の論理的なインライン方向の先頭側の境界色を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界色に対応付けられます。これは {{cssxref("border-top-color")}}, {{cssxref("border-right-color")}}, {{cssxref("border-bottom-color")}}, {{cssxref("border-left-color")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
{{EmbedInteractiveExample("pages/css/border-inline-start-color.html")}}
+ + + +

構文

+ +
border-inline-start-color: red;
+border-inline-start-color: #ee4141;
+
+ +

関連するプロパティとしては、 {{cssxref("border-block-start-color")}}, {{cssxref("border-block-end-color")}}, {{cssxref("border-inline-end-color")}} が要素の他の境界色を定義します。

+ +

{{cssinfo}}

+ +

+ +
+
<'color'>
+
境界の色です。 {{cssxref("color")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 10px solid blue;
+  border-inline-start-color: red;
+}
+ +

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

+ +

仕様書

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

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-start-color")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-start-style/index.html b/files/ja/web/css/border-inline-start-style/index.html deleted file mode 100644 index 6f092c539d..0000000000 --- a/files/ja/web/css/border-inline-start-style/index.html +++ /dev/null @@ -1,102 +0,0 @@ ---- -title: border-inline-start-style -slug: Web/CSS/border-inline-start-style -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-start - - border-inline-start-style - - border-inline-style -translation_of: Web/CSS/border-inline-start-style ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-start-styleCSS のプロパティで、要素の論理的なブロックの先頭側の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応付けられます。これは {{cssxref("border-top-style")}}, {{cssxref("border-right-style")}}, {{cssxref("border-bottom-style")}}, {{cssxref("border-left-style")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -
{{EmbedInteractiveExample("pages/css/border-inline-start-style.html")}}
- - - -

構文

- -
/* <'border-style'> 値 */
-border-inline-start-style: dashed;
-border-inline-start-style: dotted;
-border-inline-start-style: groove;
-
- -

関連するプロパティとしては、 {{cssxref("border-block-start-style")}}, {{cssxref("border-block-end-style")}}, {{cssxref("border-inline-end-style")}} が要素の他の境界のスタイルを定義します。

- -

{{cssinfo}}

- -

- -
-
<'border-style'>
-
境界の線のスタイルです。 {{cssxref("border-style")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 5px solid blue;
-  border-inline-start-style: dashed;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-start-style")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-start-style/index.md b/files/ja/web/css/border-inline-start-style/index.md new file mode 100644 index 0000000000..6f092c539d --- /dev/null +++ b/files/ja/web/css/border-inline-start-style/index.md @@ -0,0 +1,102 @@ +--- +title: border-inline-start-style +slug: Web/CSS/border-inline-start-style +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - border-inline + - border-inline-start + - border-inline-start-style + - border-inline-style +translation_of: Web/CSS/border-inline-start-style +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-start-styleCSS のプロパティで、要素の論理的なブロックの先頭側の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応付けられます。これは {{cssxref("border-top-style")}}, {{cssxref("border-right-style")}}, {{cssxref("border-bottom-style")}}, {{cssxref("border-left-style")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
{{EmbedInteractiveExample("pages/css/border-inline-start-style.html")}}
+ + + +

構文

+ +
/* <'border-style'> 値 */
+border-inline-start-style: dashed;
+border-inline-start-style: dotted;
+border-inline-start-style: groove;
+
+ +

関連するプロパティとしては、 {{cssxref("border-block-start-style")}}, {{cssxref("border-block-end-style")}}, {{cssxref("border-inline-end-style")}} が要素の他の境界のスタイルを定義します。

+ +

{{cssinfo}}

+ +

+ +
+
<'border-style'>
+
境界の線のスタイルです。 {{cssxref("border-style")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 5px solid blue;
+  border-inline-start-style: dashed;
+}
+ +

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

+ +

仕様書

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

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-start-style")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-start-width/index.html b/files/ja/web/css/border-inline-start-width/index.html deleted file mode 100644 index f32239ab42..0000000000 --- a/files/ja/web/css/border-inline-start-width/index.html +++ /dev/null @@ -1,101 +0,0 @@ ---- -title: border-inline-start-width -slug: Web/CSS/border-inline-start-width -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-start - - border-inline-start-width - - border-inline-width -translation_of: Web/CSS/border-inline-start-width ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-start-widthCSS のプロパティで、要素の論理的なインライン方向の先頭側の境界の幅を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界の幅に対応付けられます。これは {{cssxref("border-top-width")}}, {{cssxref("border-right-width")}}, {{cssxref("border-bottom-width")}}, {{cssxref("border-left-width")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -
{{EmbedInteractiveExample("pages/css/border-inline-start-width.html")}}
- - - -

構文

- -
/* <'border-width'> 値 */
-border-inline-start-width: 5px;
-border-inline-start-width: thick;
-
- -

関連するプロパティとしては、 {{cssxref("border-block-start-color")}}, {{cssxref("border-block-end-color")}}, {{cssxref("border-inline-end-color")}} が要素の他の境界の幅を定義します。

- -

{{cssinfo}}

- -

- -
-
<'border-width'>
-
境界の幅です。 {{cssxref("border-width")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 1px solid blue;
-  border-inline-start-width: 5px;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-start-width")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-start-width/index.md b/files/ja/web/css/border-inline-start-width/index.md new file mode 100644 index 0000000000..f32239ab42 --- /dev/null +++ b/files/ja/web/css/border-inline-start-width/index.md @@ -0,0 +1,101 @@ +--- +title: border-inline-start-width +slug: Web/CSS/border-inline-start-width +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - border-inline + - border-inline-start + - border-inline-start-width + - border-inline-width +translation_of: Web/CSS/border-inline-start-width +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-start-widthCSS のプロパティで、要素の論理的なインライン方向の先頭側の境界の幅を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界の幅に対応付けられます。これは {{cssxref("border-top-width")}}, {{cssxref("border-right-width")}}, {{cssxref("border-bottom-width")}}, {{cssxref("border-left-width")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
{{EmbedInteractiveExample("pages/css/border-inline-start-width.html")}}
+ + + +

構文

+ +
/* <'border-width'> 値 */
+border-inline-start-width: 5px;
+border-inline-start-width: thick;
+
+ +

関連するプロパティとしては、 {{cssxref("border-block-start-color")}}, {{cssxref("border-block-end-color")}}, {{cssxref("border-inline-end-color")}} が要素の他の境界の幅を定義します。

+ +

{{cssinfo}}

+ +

+ +
+
<'border-width'>
+
境界の幅です。 {{cssxref("border-width")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 1px solid blue;
+  border-inline-start-width: 5px;
+}
+ +

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

+ +

仕様書

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

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-start-width")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-start/index.html b/files/ja/web/css/border-inline-start/index.html deleted file mode 100644 index 58e1cee709..0000000000 --- a/files/ja/web/css/border-inline-start/index.html +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: border-inline-start -slug: Web/CSS/border-inline-start -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-start - - border-inline-start-color - - border-inline-start-style - - border-inline-start-width -translation_of: Web/CSS/border-inline-start ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-startCSS のプロパティで、個々の論理的なインライン方向の先頭側境界のプロパティ値を、スタイルシート内の単一の場所で設定するための一括指定プロパティです。

- -
{{EmbedInteractiveExample("pages/css/border-inline-start.html")}}
- - - -

構文

- -
border-inline-start: 1px;
-border-inline-start: 2px dotted;
-border-inline-start: medium dashed green;
-
- -

border-inline-start は1つ以上の {{cssxref("border-inline-start-width")}}, {{cssxref("border-inline-start-style")}}, {{cssxref("border-inline-start-color")}} の値の組み合わせを使用することができます。対応付けられる物理的な境界は、書字方向やテキストの向きによって決まります。これは {{cssxref("border-top")}}, {{cssxref("border-right")}}, {{cssxref("border-bottom")}}, {{cssxref("border-left")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -

関連するプロパティとしては、 {{cssxref("border-block-start")}}, {{cssxref("border-block-end")}}, {{cssxref("border-inline-end")}} が要素の他の境界を定義します。

- -

{{cssinfo}}

- -

- -

border-inline-start は以下の値の内の1つ以上を任意の順序で指定します。

- -
-
<'border-width'>
-
境界の幅です。 {{cssxref("border-width")}} を参照してください。
-
<'border-style'>
-
境界線のスタイルです。 {{cssxref("border-style")}} を参照してください。
-
<'color'>
-
境界の色です。 {{cssxref("color")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-rl;
-  border-inline-start: 5px dashed blue;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-start")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-start/index.md b/files/ja/web/css/border-inline-start/index.md new file mode 100644 index 0000000000..58e1cee709 --- /dev/null +++ b/files/ja/web/css/border-inline-start/index.md @@ -0,0 +1,109 @@ +--- +title: border-inline-start +slug: Web/CSS/border-inline-start +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference + - border-inline + - border-inline-start + - border-inline-start-color + - border-inline-start-style + - border-inline-start-width +translation_of: Web/CSS/border-inline-start +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-startCSS のプロパティで、個々の論理的なインライン方向の先頭側境界のプロパティ値を、スタイルシート内の単一の場所で設定するための一括指定プロパティです。

+ +
{{EmbedInteractiveExample("pages/css/border-inline-start.html")}}
+ + + +

構文

+ +
border-inline-start: 1px;
+border-inline-start: 2px dotted;
+border-inline-start: medium dashed green;
+
+ +

border-inline-start は1つ以上の {{cssxref("border-inline-start-width")}}, {{cssxref("border-inline-start-style")}}, {{cssxref("border-inline-start-color")}} の値の組み合わせを使用することができます。対応付けられる物理的な境界は、書字方向やテキストの向きによって決まります。これは {{cssxref("border-top")}}, {{cssxref("border-right")}}, {{cssxref("border-bottom")}}, {{cssxref("border-left")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +

関連するプロパティとしては、 {{cssxref("border-block-start")}}, {{cssxref("border-block-end")}}, {{cssxref("border-inline-end")}} が要素の他の境界を定義します。

+ +

{{cssinfo}}

+ +

+ +

border-inline-start は以下の値の内の1つ以上を任意の順序で指定します。

+ +
+
<'border-width'>
+
境界の幅です。 {{cssxref("border-width")}} を参照してください。
+
<'border-style'>
+
境界線のスタイルです。 {{cssxref("border-style")}} を参照してください。
+
<'color'>
+
境界の色です。 {{cssxref("color")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-rl;
+  border-inline-start: 5px dashed blue;
+}
+ +

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

+ +

仕様書

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

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-start")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-style/index.html b/files/ja/web/css/border-inline-style/index.html deleted file mode 100644 index 6ba5ffd0e9..0000000000 --- a/files/ja/web/css/border-inline-style/index.html +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: border-inline-style -slug: Web/CSS/border-inline-style -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference -translation_of: Web/CSS/border-inline-style ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-styleCSS のプロパティで、要素の論理的なインライン方向の境界のスタイルを、要素の書字方向やテキストの向きに応じて物理的な境界のスタイルに割り当てて定義します。これは {{cssxref("border-top-style")}} および {{cssxref("border-bottom-style")}}、または {{cssxref("border-left-style")}} および {{cssxref("border-right-style")}} プロパティに、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値に応じて対応します。

- -
/* <'border-style'> の値 */
-border-inline-style: dashed;
-border-inline-style: dotted;
-border-inline-style: groove;
-
- -

他の方向の境界スタイルは {{cssxref("border-block-style")}} で設定することができ、これは {{cssxref("border-block-start-style")}} および {{cssxref("border-block-end-style")}} を定義します。

- -

{{cssinfo}}

- -

構文

- -

- -
-
<'border-style'>
-
境界線のスタイルです。 {{ cssxref("border-style") }} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 5px solid blue;
-  border-inline-style: dashed;
-}
- -

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

- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-style", "border-inline-style")}}{{Spec2("CSS Logical Properties")}}初回定義。
- -

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-style")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-style/index.md b/files/ja/web/css/border-inline-style/index.md new file mode 100644 index 0000000000..6ba5ffd0e9 --- /dev/null +++ b/files/ja/web/css/border-inline-style/index.md @@ -0,0 +1,94 @@ +--- +title: border-inline-style +slug: Web/CSS/border-inline-style +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference +translation_of: Web/CSS/border-inline-style +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-styleCSS のプロパティで、要素の論理的なインライン方向の境界のスタイルを、要素の書字方向やテキストの向きに応じて物理的な境界のスタイルに割り当てて定義します。これは {{cssxref("border-top-style")}} および {{cssxref("border-bottom-style")}}、または {{cssxref("border-left-style")}} および {{cssxref("border-right-style")}} プロパティに、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値に応じて対応します。

+ +
/* <'border-style'> の値 */
+border-inline-style: dashed;
+border-inline-style: dotted;
+border-inline-style: groove;
+
+ +

他の方向の境界スタイルは {{cssxref("border-block-style")}} で設定することができ、これは {{cssxref("border-block-start-style")}} および {{cssxref("border-block-end-style")}} を定義します。

+ +

{{cssinfo}}

+ +

構文

+ +

+ +
+
<'border-style'>
+
境界線のスタイルです。 {{ cssxref("border-style") }} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 5px solid blue;
+  border-inline-style: dashed;
+}
+ +

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

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-style", "border-inline-style")}}{{Spec2("CSS Logical Properties")}}初回定義。
+ +

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-style")}}

+ +

関連情報

+ + diff --git a/files/ja/web/css/border-inline-width/index.html b/files/ja/web/css/border-inline-width/index.html deleted file mode 100644 index 23969d144c..0000000000 --- a/files/ja/web/css/border-inline-width/index.html +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: border-inline-width -slug: Web/CSS/border-inline-width -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference -translation_of: Web/CSS/border-inline-width ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-widthCSS のプロパティで、要素の論理的なインライン方向の境界の幅を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界の幅に対応付けられます。これは {{cssxref("border-top-width")}} と {{cssxref("border-bottom-width")}}、または {{cssxref("border-left-width")}} と {{cssxref("border-right-width")}} の組み合わせのどちらか対応し、どちらに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -
/* <'border-width'> 値 */
-border-inline-width: 5px 10px;
-border-inline-width: 5px;
-border-inline-width: thick;
-
- -

他の方向の境界の幅については、 {{cssxref("border-block-width")}} によって、 {{cssxref("border-block-start-width")}} と {{cssxref("border-block-end-width")}} を設定することができます。

- -

{{cssinfo}}

- -

構文

- -

- -
-
<'border-width'>
-
境界の幅です。 {{cssxref("border-width")}} を参照してください。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div>
-  <p class="exampleText">Example text</p>
-</div>
-
- -

CSS

- -
div {
-  background-color: yellow;
-  width: 120px;
-  height: 120px;
-}
-
-.exampleText {
-  writing-mode: vertical-lr;
-  border: 1px solid blue;
-  border-inline-width: 5px 10px;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

{{Compat("css.properties.border-inline-width")}}

- -

関連情報

- - diff --git a/files/ja/web/css/border-inline-width/index.md b/files/ja/web/css/border-inline-width/index.md new file mode 100644 index 0000000000..23969d144c --- /dev/null +++ b/files/ja/web/css/border-inline-width/index.md @@ -0,0 +1,94 @@ +--- +title: border-inline-width +slug: Web/CSS/border-inline-width +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference +translation_of: Web/CSS/border-inline-width +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

border-inline-widthCSS のプロパティで、要素の論理的なインライン方向の境界の幅を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界の幅に対応付けられます。これは {{cssxref("border-top-width")}} と {{cssxref("border-bottom-width")}}、または {{cssxref("border-left-width")}} と {{cssxref("border-right-width")}} の組み合わせのどちらか対応し、どちらに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

+ +
/* <'border-width'> 値 */
+border-inline-width: 5px 10px;
+border-inline-width: 5px;
+border-inline-width: thick;
+
+ +

他の方向の境界の幅については、 {{cssxref("border-block-width")}} によって、 {{cssxref("border-block-start-width")}} と {{cssxref("border-block-end-width")}} を設定することができます。

+ +

{{cssinfo}}

+ +

構文

+ +

+ +
+
<'border-width'>
+
境界の幅です。 {{cssxref("border-width")}} を参照してください。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-lr;
+  border: 1px solid blue;
+  border-inline-width: 5px 10px;
+}
+ +

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

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline-width", "border-inline-width")}}{{Spec2("CSS Logical Properties")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("css.properties.border-inline-width")}}

+ +

関連情報

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