From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/column-rule/index.html | 130 ++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 files/ja/web/css/column-rule/index.html (limited to 'files/ja/web/css/column-rule/index.html') diff --git a/files/ja/web/css/column-rule/index.html b/files/ja/web/css/column-rule/index.html new file mode 100644 index 0000000000..ed13f58638 --- /dev/null +++ b/files/ja/web/css/column-rule/index.html @@ -0,0 +1,130 @@ +--- +title: column-rule +slug: Web/CSS/column-rule +tags: + - CSS + - CSS Property + - CSS プロパティ + - CSS 段組みレイアウト + - column-rule + - column-rule-color + - column-rule-style + - column-rule-width + - リファレンス + - 一括指定プロパティ + - 段組み +translation_of: Web/CSS/column-rule +--- +
{{CSSRef}}
+ +

column-rule一括指定を行う CSS のプロパティで、段組みレイアウトで段間に引かれる線の太さ、スタイル、色を設定します。

+ +
{{EmbedInteractiveExample("pages/css/column-rule.html")}}
+ + + +

これは一括指定プロパティであり、一回の便利な宣言で個別の column-rule-* プロパティ ({{Cssxref("column-rule-width")}}, {{Cssxref("column-rule-style")}}, {{Cssxref("column-rule-color")}}) を設定できます。

+ +
+

メモ: 他の一括指定プロパティと同様に、指定されなかった個別の値は初期値が設定されます (以前に個別指定プロパティを使用して設定された値を上書きする可能性があります)。

+
+ +

構文

+ +
column-rule: dotted;
+column-rule: solid 8px;
+column-rule: solid blue;
+column-rule: thick inset blue;
+
+/* グローバル値 */
+column-rule: inherit;
+column-rule: initial;
+column-rule: unset;
+
+ +

column-rule プロパティは、以下に挙げる値のうち1から3つを任意の順序で指定します。

+ +

+ +
+
<'column-rule-width'>
+
{{cssxref("<length>")}} または3つのキーワード、 thin, medium, thick のうちの1つです。詳しくは {{cssxref("border-width")}} を参照してください。
+
<'column-rule-style'>
+
有効な値と詳細は {{cssxref("border-style")}} を参照してください。
+
<'column-rule-color'>
+
{{cssxref("<color>")}} 値です。
+
+ +

形式文法

+ +
{{csssyntax}}
+
+ +

+ +

例1

+ +
/* "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; }
+
+ +

例2

+ +

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>
+
+ +

CSS

+ +
.content-box {
+  padding: 0.3em;
+  background: #ff7;
+  column-count: 3;
+  column-rule: inset 2px #33f;
+}
+
+ +

結果

+ +

{{EmbedLiveSample('Example_2')}}

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('CSS3 Multicol', '#column-rule', 'column-rule')}}{{Spec2('CSS3 Multicol')}}初回定義
+ +

{{cssinfo}}

+ +

ブラウザーの対応

+ + + +

{{Compat("css.properties.column-rule")}}

-- cgit v1.2.3-54-g00ecf