diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-29 23:33:35 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-08 13:55:13 +0900 |
commit | fc3d53d77d58c44762ce3c810204f111dcbb6d68 (patch) | |
tree | 7c3ac0fd164ffe51d89e89d2fa90e91adad16444 /files/ja/web/css | |
parent | f137d458d71406274a4a0601b8590d48c1e22d6c (diff) | |
download | translated-content-fc3d53d77d58c44762ce3c810204f111dcbb6d68.tar.gz translated-content-fc3d53d77d58c44762ce3c810204f111dcbb6d68.tar.bz2 translated-content-fc3d53d77d58c44762ce3c810204f111dcbb6d68.zip |
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css')
-rw-r--r-- | files/ja/web/css/column-rule-style/index.md | 93 |
1 files changed, 46 insertions, 47 deletions
diff --git a/files/ja/web/css/column-rule-style/index.md b/files/ja/web/css/column-rule-style/index.md index a27908eead..f57ff13790 100644 --- a/files/ja/web/css/column-rule-style/index.md +++ b/files/ja/web/css/column-rule-style/index.md @@ -3,23 +3,23 @@ title: column-rule-style slug: Web/CSS/column-rule-style tags: - CSS - - CSS プロパティ - CSS 段組みレイアウト - - Reference - - 段組み + - CSS プロパティ + - リファレンス + - recipe:css-property +browser-compat: css.properties.column-rule-style translation_of: Web/CSS/column-rule-style --- -<div>{{CSSRef}}</div> +{{ CSSRef}} -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>column-rule-style</code></strong> プロパティは、段組みレイアウトで段の間に引かれる線 (段間罫) のスタイルを設定します。</p> +**`column-rule-style`** は [CSS](/ja/docs/Web/CSS) のプロパティで、段組みレイアウトで段の間に引かれる線 (段間罫) のスタイルを設定します。 -<div>{{EmbedInteractiveExample("pages/css/column-rule-style.html")}}</div> +{{EmbedInteractiveExample("pages/css/column-rule-style.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">/* <'border-style'> の値 */ +```css +/* <'border-style'> の値 */ column-rule-style: none; column-rule-style: hidden; column-rule-style: dotted; @@ -34,63 +34,62 @@ column-rule-style: outset; /* グローバル値 */ column-rule-style: inherit; column-rule-style: initial; +column-rule-style: revert; column-rule-style: unset; -</pre> +``` + +`column-rule-style` プロパティは、単一の `<'border-style'>` 値で指定します。 -<p><code>column-rule-style</code> プロパティは、単一の <code><'border-style'></code> 値で指定します。</p> +### 値 -<h3 id="Values" name="Values">値</h3> +- `<'border-style'>` + - : {{ cssxref("border-style") }} で定義されているキーワードで、段間罫のスタイルを指定します。スタイルは collasped の境界線モデルで解釈されます。 -<dl> - <dt><code><'border-style'></code></dt> - <dd>{{ cssxref("border-style") }} で定義されているキーワードで、段間罫のスタイルを指定します。スタイルは collasped の境界線モデルで解釈されます。</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-style` property is used to change the style 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: dashed; -}</pre> +} +``` + +#### 結果 -<h3 id="Result" name="Result">結果</h3> +{{ EmbedLiveSample('Setting_a_dashed_column_rule') }} -<p>{{ EmbedLiveSample('Example') }}</p> +## 仕様書 -<h2 id="Specifications" name="Specifications">仕様書</h2> +{{Specifications}} -<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', '#crs', 'column-rule-style') }}</td> - <td>{{ Spec2('CSS3 Multicol') }}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> +## ブラウザーの互換性 -<p>{{cssinfo}}</p> +{{Compat}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +## 関連情報 -<p>{{Compat("css.properties.column-rule-style")}}</p> +- [段組みレイアウト](/ja/docs/Learn/CSS/CSS_layout/Multiple-column_Layout) +- {{CSSXref("column-rule")}} +- {{CSSXref("column-rule-width")}} +- {{CSSXref("column-rule-color")}} |