diff options
Diffstat (limited to 'files/ja/web/css/border-block/index.md')
-rw-r--r-- | files/ja/web/css/border-block/index.md | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/files/ja/web/css/border-block/index.md b/files/ja/web/css/border-block/index.md new file mode 100644 index 0000000000..f5b1d65978 --- /dev/null +++ b/files/ja/web/css/border-block/index.md @@ -0,0 +1,120 @@ +--- +title: border-block +slug: Web/CSS/border-block +tags: + - CSS + - CSS Logical Property + - CSS Property + - CSS プロパティ + - CSS 論理的プロパティ + - Experimental + - Non-standard + - Reference + - 'recipe:css-shorthand-property' +browser-compat: css.properties.border-block +translation_of: Web/CSS/border-block +--- +<div>{{CSSRef}}</div> + +<p>The <strong><code>border-block</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、論理的なブロック方向のそれぞれの境界プロパティをスタイルシートの 1 ヶ所で設定する<a href="/ja/docs/Web/CSS/Shorthand_properties">一括指定プロパティ</a>です。</p> + +<div>{{EmbedInteractiveExample("pages/css/border-block.html")}}</div> + +<p><code>border-block</code> は {{cssxref("border-block-width")}}, {{cssxref("border-block-style")}}, {{cssxref("border-block-color")}} のうちの1つ以上の値を、インライン方向の先頭側と末尾側の両方に対して一度に設定するために使用することができます。割り当て先の物理的な境界は、要素の書字方向によって決まります。 {{cssxref("border-top")}} と {{cssxref("border-bottom")}}、または {{cssxref("border-right")}} と {{cssxref("border-left")}} のどちらかの組み合わせに対して、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} に設定された値に応じて対応付けられます。</p> + +<p>他の方向の境界については、 {{cssxref("border-inline")}} によって、 {{cssxref("border-inline-start")}} と {{cssxref("border-inline-end")}} の両方を設定することができます。</p> + +<h2 id="Constituent_properties">構成要素のプロパティ</h2> + +<p>このプロパティは以下の CSS プロパティの一括指定です。</p> + +<ul> + <li><a href="/ja/docs/Web/CSS/border-block-color"><code>border-block-color</code></a></li> + <li><a href="/ja/docs/Web/CSS/border-block-style"><code>border-block-style</code></a></li> + <li><a href="/ja/docs/Web/CSS/border-block-width"><code>border-block-width</code></a></li> +</ul> + +<h2 id="Syntax">構文</h2> + +<pre class="brush:css no-line-numbers">border-block: 1px; +border-block: 2px dotted; +border-block: medium dashed blue;</pre> + +<h3 id="Values">値</h3> + +<p><code>border-block</code> は以下の値のうちの 1 つ以上を任意の順序で指定します。</p> + +<dl> + <dt><code><'border-width'></code></dt> + <dd>境界の幅です。 {{cssxref("border-width")}} を参照してください。</dd> + <dt><code><'border-style'></code></dt> + <dd>境界線のスタイルです。 {{cssxref("border-style")}} を参照してください。</dd> + <dt><code><'color'></code></dt> + <dd>境界線の色です。 {{cssxref("color")}} を参照してください。</dd> +</dl> + +<h2 id="Formal_definition">公式定義</h2> + +<p>{{CSSInfo}}</p> + +<h2 id="Formal_syntax">形式文法</h2> + +{{csssyntax}} + +<h2 id="Example">例</h2> + +<h3 id="Border_with_vertical_text">縦書きテキストの境界</h3> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><div> + <p class="exampleText">Example text</p> +</div> +</pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush: css">div { + background-color: yellow; + width: 120px; + height: 120px; +} + +.exampleText { + writing-mode: vertical-rl; + border-block: 5px dashed blue; +}</pre> + +<h4 id="Results">結果</h4> + +<p>{{EmbedLiveSample("Border_with_vertical_text", 140, 140)}}</p> + +<h2 id="Specification">仕様書</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", "border-block")}}</td> + <td>{{Spec2("CSS Logical Properties")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat}}</p> + +<h2 id="See_also">関連情報</h2> + +<ul> + <li>このプロパティは物理的な境界プロパティである {{cssxref("border-top")}}, {{cssxref("border-right")}}, {{cssxref("border-bottom")}}, {{cssxref("border-left")}} の何れかに対応付けられます。</li> + <li>{{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}</li> +</ul> |