aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/border-block-style
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-17 00:45:11 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-28 02:23:38 +0900
commit097e0c985e82e73460e6c0a76f3b901ce3af98f7 (patch)
tree6d6acdc183bc63a7f4c295a6924cf09f2ee97944 /files/ja/web/css/border-block-style
parent60367cb41ff3291f2d5c1a03feeb26645c7cd336 (diff)
downloadtranslated-content-097e0c985e82e73460e6c0a76f3b901ce3af98f7.tar.gz
translated-content-097e0c985e82e73460e6c0a76f3b901ce3af98f7.tar.bz2
translated-content-097e0c985e82e73460e6c0a76f3b901ce3af98f7.zip
CSS 論理的プロパティと値のボックスモデルに関するプロパティを更新
- 2021/11/15 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/border-block-style')
-rw-r--r--files/ja/web/css/border-block-style/index.md102
1 files changed, 46 insertions, 56 deletions
diff --git a/files/ja/web/css/border-block-style/index.md b/files/ja/web/css/border-block-style/index.md
index 98da64022f..19239bfd8e 100644
--- a/files/ja/web/css/border-block-style/index.md
+++ b/files/ja/web/css/border-block-style/index.md
@@ -3,61 +3,67 @@ title: border-block-style
slug: Web/CSS/border-block-style
tags:
- CSS
- - CSS Logical Property
- - CSS Property
- - CSS プロパティ
- CSS 論理的プロパティ
- - Experimental
+ - CSS プロパティ
+ - 実験的
- Non-standard
- - Reference
- - 'recipe:css-property'
+ - リファレンス
+ - recipe:css-property
browser-compat: css.properties.border-block-style
translation_of: Web/CSS/border-block-style
---
-<div>{{CSSRef}}</div>
+{{CSSRef}}
-<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>
+**`border-block-style`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の論理的なブロック方向の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応づけられます。これは {{cssxref("border-top-style")}} と {{cssxref("border-bottom-style")}}、または {{cssxref("border-left-style")}} と {{cssxref("border-right-style")}} のどちらかに対応し、どちらに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。
-<div>{{EmbedInteractiveExample("pages/css/border-block-style.html")}}</div>
+{{EmbedInteractiveExample("pages/css/border-block-style.html")}}
-<p>他の方向の境界については、 {{cssxref("border-inline-style")}} によって、 {{cssxref("border-inline-start-style")}} と {{cssxref("border-inline-end-style")}} の両方を設定することができます。</p>
+他の方向の境界については、 {{cssxref("border-inline-style")}} によって、 {{cssxref("border-inline-start-style")}} と {{cssxref("border-inline-end-style")}} の両方を設定することができます。
-<h2 id="Syntax">構文</h2>
+## 構文
-<pre class="brush:css no-line-numbers">/* &lt;'border-style'&gt; 値 */
+```css
+/* <'border-style'> 値 */
border-block-style: dashed;
border-block-style: dotted;
-border-block-style: groove;</pre>
+border-block-style: groove;
-<h3 id="Values">値</h3>
+/* グローバル値 */
+border-block-style: inherit;
+border-block-style: initial;
+border-block-style: revert;
+border-block-style: unset;
+```
-<dl>
- <dt><code>&lt;'border-style'&gt;</code></dt>
- <dd>境界のスタイルです。 {{cssxref("border-style")}} を参照してください。</dd>
-</dl>
+### 値
-<h2 id="Formal_definition">公式定義</h2>
+- `<'border-style'>`
+ - : 境界のスタイルです。 {{cssxref("border-style")}} を参照してください。
-<p>{{CSSInfo}}</p>
+## 公式定義
-<h2 id="Formal_syntax">形式文法</h2>
+{{CSSInfo}}
+
+## 形式文法
{{csssyntax}}
-<h2 id="Example">例</h2>
+## 例
<h3 id="Dashed_border_with_vertical_text">縦書きでの破線の境界</h3>
-<h4 id="HTML">HTML</h4>
+#### HTML
-<pre class="brush: html">&lt;div&gt;
- &lt;p class="exampleText"&gt;Example text&lt;/p&gt;
-&lt;/div&gt;
-</pre>
+```html
+<div>
+ <p class="exampleText">Example text</p>
+</div>
+```
-<h4 id="CSS">CSS</h4>
+#### CSS
-<pre class="brush: css">div {
+```css
+div {
background-color: yellow;
width: 120px;
height: 120px;
@@ -67,38 +73,22 @@ border-block-style: groove;</pre>
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>
+{{EmbedLiveSample("Dashed_border_with_vertical_text", 140, 140)}}
-<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>
+{{Specifications}}
-<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
+## ブラウザーの互換性
-<p>{{Compat}}</p>
+{{Compat}}
-<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>
+- このプロパティは {{cssxref("border-top-style")}}, {{cssxref("border-right-style")}}, {{cssxref("border-bottom-style")}}, {{cssxref("border-left-style")}} のうちの 1 つに対応します
+- {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}