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-style/index.html | 94 ------------------------- 1 file changed, 94 deletions(-) delete mode 100644 files/ja/web/css/border-inline-style/index.html (limited to 'files/ja/web/css/border-inline-style/index.html') 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")}}

- -

関連情報

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