From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/border-block-style/index.html | 96 ++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 files/ja/web/css/border-block-style/index.html (limited to 'files/ja/web/css/border-block-style') diff --git a/files/ja/web/css/border-block-style/index.html b/files/ja/web/css/border-block-style/index.html new file mode 100644 index 0000000000..928aeb32cf --- /dev/null +++ b/files/ja/web/css/border-block-style/index.html @@ -0,0 +1,96 @@ +--- +title: border-block-style +slug: Web/CSS/border-block-style +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Reference +translation_of: Web/CSS/border-block-style +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

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-style'> 値 */
+border-block-style: dashed;
+border-block-style: dotted;
+border-block-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-block-style: dashed;
+}
+ +

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

+ +

仕様書

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

ブラウザーの互換性

+ + + +

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

+ +

関連情報

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