aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/border-block-style/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/css/border-block-style/index.md')
-rw-r--r--files/ja/web/css/border-block-style/index.md104
1 files changed, 104 insertions, 0 deletions
diff --git a/files/ja/web/css/border-block-style/index.md b/files/ja/web/css/border-block-style/index.md
new file mode 100644
index 0000000000..98da64022f
--- /dev/null
+++ b/files/ja/web/css/border-block-style/index.md
@@ -0,0 +1,104 @@
+---
+title: border-block-style
+slug: Web/CSS/border-block-style
+tags:
+ - CSS
+ - CSS Logical Property
+ - CSS Property
+ - CSS プロパティ
+ - CSS 論理的プロパティ
+ - Experimental
+ - Non-standard
+ - Reference
+ - 'recipe:css-property'
+browser-compat: css.properties.border-block-style
+translation_of: Web/CSS/border-block-style
+---
+<div>{{CSSRef}}</div>
+
+<p><strong><code>border-block-style</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、要素の論理的なブロック方向の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応付けられます。これは {{cssxref("border-top-style")}} と {{cssxref("border-bottom-style")}}、または {{cssxref("border-left-style")}} と {{cssxref("border-right-style")}} のどちらかに対応し、どちらに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。</p>
+
+<div>{{EmbedInteractiveExample("pages/css/border-block-style.html")}}</div>
+
+<p>他の方向の境界については、 {{cssxref("border-inline-style")}} によって、 {{cssxref("border-inline-start-style")}} と {{cssxref("border-inline-end-style")}} の両方を設定することができます。</p>
+
+<h2 id="Syntax">構文</h2>
+
+<pre class="brush:css no-line-numbers">/* &lt;'border-style'&gt; 値 */
+border-block-style: dashed;
+border-block-style: dotted;
+border-block-style: groove;</pre>
+
+<h3 id="Values">値</h3>
+
+<dl>
+ <dt><code>&lt;'border-style'&gt;</code></dt>
+ <dd>境界のスタイルです。 {{cssxref("border-style")}} を参照してください。</dd>
+</dl>
+
+<h2 id="Formal_definition">公式定義</h2>
+
+<p>{{CSSInfo}}</p>
+
+<h2 id="Formal_syntax">形式文法</h2>
+
+{{csssyntax}}
+
+<h2 id="Example">例</h2>
+
+<h3 id="Dashed_border_with_vertical_text">縦書きでの破線の境界</h3>
+
+<h4 id="HTML">HTML</h4>
+
+<pre class="brush: html">&lt;div&gt;
+ &lt;p class="exampleText"&gt;Example text&lt;/p&gt;
+&lt;/div&gt;
+</pre>
+
+<h4 id="CSS">CSS</h4>
+
+<pre class="brush: css">div {
+ background-color: yellow;
+ width: 120px;
+ height: 120px;
+}
+
+.exampleText {
+ writing-mode: vertical-lr;
+ border: 5px solid blue;
+ border-block-style: dashed;
+}</pre>
+
+<h4 id="Results">結果</h4>
+
+<p>{{EmbedLiveSample("Dashed_border_with_vertical_text", 140, 140)}}</p>
+
+<h2 id="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName("CSS Logical Properties", "#propdef-border-block-style", "border-block-style")}}</td>
+ <td>{{Spec2("CSS Logical Properties")}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p>{{Compat}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>このプロパティは {{cssxref("border-top-style")}}, {{cssxref("border-right-style")}}, {{cssxref("border-bottom-style")}}, {{cssxref("border-left-style")}} のうちの 1 つに対応します</li>
+ <li>{{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}</li>
+</ul>