aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/border-block/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-16 23:03:12 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-28 02:23:38 +0900
commit60367cb41ff3291f2d5c1a03feeb26645c7cd336 (patch)
tree3f3584b14df1fcd22d34046051776f60fe40e347 /files/ja/web/css/border-block/index.html
parent7f9cc6de0a0d289fc95597089260abcdb5abcf8e (diff)
downloadtranslated-content-60367cb41ff3291f2d5c1a03feeb26645c7cd336.tar.gz
translated-content-60367cb41ff3291f2d5c1a03feeb26645c7cd336.tar.bz2
translated-content-60367cb41ff3291f2d5c1a03feeb26645c7cd336.zip
CSS 論理的プロパティのボックスモデルのプロパティを変換準備
Diffstat (limited to 'files/ja/web/css/border-block/index.html')
-rw-r--r--files/ja/web/css/border-block/index.html120
1 files changed, 0 insertions, 120 deletions
diff --git a/files/ja/web/css/border-block/index.html b/files/ja/web/css/border-block/index.html
deleted file mode 100644
index f5b1d65978..0000000000
--- a/files/ja/web/css/border-block/index.html
+++ /dev/null
@@ -1,120 +0,0 @@
----
-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>&lt;'border-width'&gt;</code></dt>
- <dd>境界の幅です。 {{cssxref("border-width")}} を参照してください。</dd>
- <dt><code>&lt;'border-style'&gt;</code></dt>
- <dd>境界線のスタイルです。 {{cssxref("border-style")}} を参照してください。</dd>
- <dt><code>&lt;'color'&gt;</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">&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-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>