From 1c28547ac82df0bd3dbc3213fc33bd233a4155db Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Mon, 7 Jun 2021 12:09:07 +0900 Subject: Web/CSS/border-block-style を更新 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/border-block-style/index.html | 50 +++++++++++++++----------- 1 file changed, 29 insertions(+), 21 deletions(-) (limited to 'files/ja/web/css') diff --git a/files/ja/web/css/border-block-style/index.html b/files/ja/web/css/border-block-style/index.html index 9010e1979b..a23f7a8e56 100644 --- a/files/ja/web/css/border-block-style/index.html +++ b/files/ja/web/css/border-block-style/index.html @@ -8,46 +8,54 @@ tags: - CSS プロパティ - CSS 論理的プロパティ - Experimental + - Non-standard - Reference + - 'recipe:css-property' +browser-compat: css.properties.border-block-style translation_of: Web/CSS/border-block-style --- -
{{CSSRef}}{{SeeCompatTable}}
+
{{CSSRef}}
-

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

+

border-block-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-block-style: dashed;
-border-block-style: dotted;
-border-block-style: groove;
-
+
{{EmbedInteractiveExample("pages/css/border-block-style.html")}}
-

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

+

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

-

{{cssinfo}}

+

構文

-

構文

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

+

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

形式文法

+

公式定義

+ +

{{CSSInfo}}

+ +

形式文法

{{csssyntax}} -

+

-

HTML

+

縦書きでの破線の境界

+ +

HTML

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

CSS

+

CSS

div {
   background-color: yellow;
@@ -61,9 +69,11 @@ border-block-style: groove;
   border-block-style: dashed;
 }
-

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

+

結果

+ +

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

-

仕様書

+

仕様書

@@ -82,15 +92,13 @@ border-block-style: groove;
-

ブラウザーの互換性

- - +

ブラウザーの互換性

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

関連情報

-- cgit v1.2.3-54-g00ecf