aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/border-inline/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-28 22:19:01 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-08 02:03:11 +0900
commit3765751d2f70fc476708683ebf180bfff233bf4a (patch)
tree3c065e381fd47c988ba4208f97a863b7fdcc19ac /files/ja/web/css/border-inline/index.html
parent6fe3e1b3c42ce37b69e773ac34d6ba24dc21486d (diff)
downloadtranslated-content-3765751d2f70fc476708683ebf180bfff233bf4a.tar.gz
translated-content-3765751d2f70fc476708683ebf180bfff233bf4a.tar.bz2
translated-content-3765751d2f70fc476708683ebf180bfff233bf4a.zip
Web/CSS/border-inline の変換準備
Diffstat (limited to 'files/ja/web/css/border-inline/index.html')
-rw-r--r--files/ja/web/css/border-inline/index.html98
1 files changed, 0 insertions, 98 deletions
diff --git a/files/ja/web/css/border-inline/index.html b/files/ja/web/css/border-inline/index.html
deleted file mode 100644
index 9c6006a026..0000000000
--- a/files/ja/web/css/border-inline/index.html
+++ /dev/null
@@ -1,98 +0,0 @@
----
-title: border-inline
-slug: Web/CSS/border-inline
-tags:
- - CSS
- - CSS Logical Property
- - CSS Property
- - Experimental
- - Reference
-translation_of: Web/CSS/border-inline
----
-<div>{{CSSRef}}{{SeeCompatTable}}</div>
-
-<p>The <strong><code>border-inline</code></strong> は <a href="/ja/docs/Web/CSS" title="CSS">CSS</a> のプロパティで、論理的なインライン方向のそれぞれの境界プロパティをスタイルシートの1ヶ所で設定する<a href="/ja/docs/Web/CSS/Shorthand_properties">一括指定プロパティ</a>です。</p>
-
-<pre class="brush:css no-line-numbers">border-inline: 1px;
-border-inline: 2px dotted;
-border-inline: medium dashed blue;
-</pre>
-
-<p><code>border-inline</code> は {{cssxref("border-inline-width")}}, {{cssxref("border-inline-style")}}, {{cssxref("border-inline-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-block")}} によって、 {{cssxref("border-block-start")}} と {{cssxref("border-block-end")}} の両方を設定することができます。</p>
-
-<p>{{cssinfo}}</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<h3 id="Values" name="Values">値</h3>
-
-<p><code>border-inline</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>
-
-<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
-
-{{csssyntax}}
-
-<h2 id="Example" name="Example">例</h2>
-
-<h3 id="HTML">HTML</h3>
-
-<pre class="brush: html">&lt;div&gt;
- &lt;p class="exampleText"&gt;Example text&lt;/p&gt;
-&lt;/div&gt;
-</pre>
-
-<h3 id="CSS">CSS</h3>
-
-<pre class="brush: css">div {
- background-color: yellow;
- width: 120px;
- height: 120px;
-}
-
-.exampleText {
- writing-mode: vertical-rl;
- border-inline: 5px dashed blue;
-}</pre>
-
-<p>{{EmbedLiveSample("Example", 140, 140)}}</p>
-
-<h2 id="Specification" name="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-inline", "border-inline")}}</td>
- <td>{{Spec2("CSS Logical Properties")}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("css.properties.border-inline")}}</p>
-
-<h2 id="See_also" name="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>