diff options
Diffstat (limited to 'files/ja/web/css/column-rule/index.md')
-rw-r--r-- | files/ja/web/css/column-rule/index.md | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/files/ja/web/css/column-rule/index.md b/files/ja/web/css/column-rule/index.md new file mode 100644 index 0000000000..768c36a8d8 --- /dev/null +++ b/files/ja/web/css/column-rule/index.md @@ -0,0 +1,117 @@ +--- +title: column-rule +slug: Web/CSS/column-rule +tags: + - CSS + - CSS Multi-column Layout + - CSS Property + - Reference + - 'recipe:css-property' +browser-compat: css.properties.column-rule +translation_of: Web/CSS/column-rule +--- +<div>{{CSSRef}}</div> + +<p><strong><code>column-rule</code></strong> は<a href="/ja/docs/Web/CSS/Shorthand_properties">一括指定</a>を行う <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、段組みレイアウトで段間に引かれる線の太さ、スタイル、色を設定します。</p> + +<div>{{EmbedInteractiveExample("pages/css/column-rule.html")}}</div> + +<p>これは<a href="/ja/docs/Web/CSS/Shorthand_properties">一括指定プロパティ</a>であり、一回の便利な宣言で個別の <code>column-rule-*</code> プロパティ ({{Cssxref("column-rule-width")}}, {{Cssxref("column-rule-style")}}, {{Cssxref("column-rule-color")}}) を設定できます。</p> + +<div class="note"> +<p><strong>メモ:</strong> 他の一括指定プロパティと同様に、指定されなかった個別の値は初期値が設定されます (以前に個別指定プロパティを使用して設定された値を上書きする可能性があります)。</p> +</div> + +<h2 id="Syntax">構文</h2> + +<pre class="brush:css no-line-numbers">column-rule: dotted; +column-rule: solid 8px; +column-rule: solid blue; +column-rule: thick inset blue; + +/* グローバル値 */ +column-rule: inherit; +column-rule: initial; +column-rule: revert; +column-rule: unset; +</pre> + +<p><code>column-rule</code> プロパティは、以下に挙げる値のうち 1 ~ 3 個を任意の順序で指定します。</p> + +<h3 id="Values">値</h3> + +<dl> + <dt><code><'column-rule-width'></code></dt> + <dd>{{cssxref("<length>")}} または 3 つのキーワード、 <code>thin</code>、<code>medium</code>、<code>thick</code> のうちの 1 つです。詳しくは {{cssxref("border-width")}} を参照してください。</dd> + <dt><code><'column-rule-style'></code></dt> + <dd>有効な値と詳細は {{cssxref("border-style")}} を参照してください。</dd> + <dt><code><'column-rule-color'></code></dt> + <dd>{{cssxref("<color>")}} 値です。</dd> +</dl> + +<h2 id="Formal_definition">公式定義</h2> + +<p>{{cssinfo}}</p> + +<h2 id="Formal_syntax">形式文法</h2> + +{{csssyntax}} + +<h2 id="Examples">例</h2> + +<h3 id="Example_1">例 1</h3> + +<pre class="brush: css">/* "medium dotted currentcolor" と同じ */ +p.foo { column-rule: dotted; } + +/* "medium solid blue" と同じ */ +p.bar { column-rule: solid blue; } + +/* "8px solid currentcolor" と同じ */ +p.baz { column-rule: solid 8px; } + +p.abc { column-rule: thick inset blue; } +</pre> + +<h3 id="Example_2">例 2</h3> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><p class="content-box"> + This is a bunch of text split into three columns. + Take note of how the `column-rule` property is used + to adjust the style, width, and color of the rule + that appears between the columns. +</p> +</pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush: css">.content-box { + padding: 0.3em; + background: #ff7; + column-count: 3; + column-rule: inset 2px #33f; +} +</pre> + +<h4 id="Result">結果</h4> + +<p>{{EmbedLiveSample('Example_2')}}</p> + +<h2 id="Specifications">仕様書</h2> + +{{Specifications}} + +<h2 id="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat}}</p> + +<h2 id="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/Learn/CSS/CSS_layout/Multiple-column_Layout">段組みレイアウト</a></li> + <li>{{CSSXref("column-rule-style")}}</li> + <li>{{CSSXref("column-rule-width")}}</li> + <li>{{CSSXref("column-rule-color")}}</li> +</ul> |