diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-29 23:02:06 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-08 13:55:13 +0900 |
commit | f137d458d71406274a4a0601b8590d48c1e22d6c (patch) | |
tree | 6b34a72413686d76456759e11c0f88356a4bb619 /files | |
parent | 1dc9b23efceedddd0e3c46e494b18647f73b97bc (diff) | |
download | translated-content-f137d458d71406274a4a0601b8590d48c1e22d6c.tar.gz translated-content-f137d458d71406274a4a0601b8590d48c1e22d6c.tar.bz2 translated-content-f137d458d71406274a4a0601b8590d48c1e22d6c.zip |
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/css/column-rule-color/index.md | 101 |
1 files changed, 47 insertions, 54 deletions
diff --git a/files/ja/web/css/column-rule-color/index.md b/files/ja/web/css/column-rule-color/index.md index 10656f4c94..8048dc27ae 100644 --- a/files/ja/web/css/column-rule-color/index.md +++ b/files/ja/web/css/column-rule-color/index.md @@ -3,24 +3,28 @@ title: column-rule-color slug: Web/CSS/column-rule-color tags: - CSS - - CSS プロパティ - CSS 段組みレイアウト + - CSS プロパティ - HTML 色 - - Reference - - 段組み + - リファレンス + - スタイル + - HTML のスタイル付け + - column-rule-color + - columns + - recipe:css-property +browser-compat: css.properties.column-rule-color translation_of: Web/CSS/column-rule-color --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><strong><code>column-rule-color</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、段組みレイアウトで段間に引かれる線の色を設定します。</p> +**`column-rule-color`** は [CSS](/ja/docs/Web/CSS) のプロパティで、段組みレイアウトで段間に引かれる線(段間罫)の色を設定します。 -<div>{{EmbedInteractiveExample("pages/css/column-rule-color.html")}}</div> +{{EmbedInteractiveExample("pages/css/column-rule-color.html")}} -<p class="hidden">この対話型サンプルのソースファイルは GitHub リポジトリに格納されています。対話型サンプルプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush:css no-line-numbers">/* <color> 値 */ +```css +/* <color> 値 */ column-rule-color: red; column-rule-color: rgb(192, 56, 78); column-rule-color: transparent; @@ -29,73 +33,62 @@ column-rule-color: hsla(0, 100%, 50%, 0.6); /* グローバル値 */ column-rule-color: inherit; column-rule-color: initial; +column-rule-color: revert; column-rule-color: unset; -</pre> +``` + +`column-rule-color` プロパティは、単一の `<color>` 値で指定します。 -<p><code>column-rule-color</code> プロパティは、単一の <code><color></code> 値で指定します。</p> +### 値 -<h3 id="Values" name="Values">値</h3> +- {{cssxref("<color>")}} + - : 段を分割する段間罫の色です。 -<dl> - <dt>{{cssxref("<color>")}}</dt> - <dd>段を分割する段間罫の色です。</dd> -</dl> +## 公式定義 -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +{{cssinfo}} + +## 形式文法 {{csssyntax}} -<h2 id="Example" name="Example">例</h2> +## 例 + +### 青い段間罫を設定 -<h3 id="HTML">HTML</h3> +#### HTML -<pre class="brush: html"><p>This is a bunch of text split into three columns. +```html +<p>This is a bunch of text split into three columns. The `column-rule-color` property is used to change the color of the line that is drawn between columns. - Don't you think that's wonderful?</p></pre> + Don't you think that's wonderful?</p> +``` -<h3 id="CSS">CSS</h3> +#### CSS -<pre class="brush:css">p { +```css +p { column-count: 3; column-rule-style: solid; column-rule-color: blue; } -</pre> - -<h3 id="Result" name="Result">結果</h3> +``` -<p>{{EmbedLiveSample("Example")}}</p> +#### 結果 -<h2 id="Specifications" name="Specifications">仕様書</h2> +{{EmbedLiveSample("Setting_a_blue_column_rule")}} -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('CSS3 Multicol', '#crc', 'column-rule-color')}}</td> - <td>{{Spec2('CSS3 Multicol')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> +## 仕様書 -<p>{{cssinfo}}</p> +{{Specifications}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +## ブラウザーの互換性 -<p>{{Compat("css.properties.column-rule-color")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li>{{cssxref("<color>")}} データ型</li> - <li>他の色に関するプロパティ: {{cssxref("color")}}, {{cssxref("background-color")}}, {{cssxref("border-color")}}, {{cssxref("outline-color")}}, {{cssxref("text-decoration-color")}}, {{cssxref("text-emphasis-color")}}, {{cssxref("text-shadow")}}, {{cssxref("caret-color")}}</li> - <li><a href="/ja/docs/Web/HTML/Applying_color">CSS を使った HTML の要素への色の適用</a></li> -</ul> +- {{cssxref("<color>")}} データ型 +- 色に関する他のプロパティ: {{cssxref("color")}}, {{cssxref("background-color")}}, {{cssxref("border-color")}}, {{cssxref("outline-color")}}, {{cssxref("text-decoration-color")}}, {{cssxref("text-emphasis-color")}}, {{cssxref("text-shadow")}}, {{cssxref("caret-color")}} +- [CSS を使った HTML の要素への色の適用](/ja/docs/Web/HTML/Applying_color) |