From 1dc9b23efceedddd0e3c46e494b18647f73b97bc Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 29 Dec 2021 22:56:42 +0900 Subject: 2021/08/13 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/column-rule/index.md | 98 +++++++++++++++++------------------ 1 file changed, 48 insertions(+), 50 deletions(-) diff --git a/files/ja/web/css/column-rule/index.md b/files/ja/web/css/column-rule/index.md index 768c36a8d8..f8d2ec4b89 100644 --- a/files/ja/web/css/column-rule/index.md +++ b/files/ja/web/css/column-rule/index.md @@ -3,28 +3,27 @@ title: column-rule slug: Web/CSS/column-rule tags: - CSS - - CSS Multi-column Layout - - CSS Property - - Reference - - 'recipe:css-property' + - CSS 段組みレイアウト + - CSS プロパティ + - リファレンス + - recipe:css-property browser-compat: css.properties.column-rule translation_of: Web/CSS/column-rule --- -
{{CSSRef}}
+{{CSSRef}} -

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

+**`column-rule`** は[一括指定](/ja/docs/Web/CSS/Shorthand_properties)を行う [CSS](/ja/docs/Web/CSS) のプロパティで、段組みレイアウトで段間に引かれる線(段間罫)の太さ、スタイル、色を設定します。 -
{{EmbedInteractiveExample("pages/css/column-rule.html")}}
+{{EmbedInteractiveExample("pages/css/column-rule.html")}} -

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

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

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

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

構文

+## 構文 -
column-rule: dotted;
+```css
+column-rule: dotted;
 column-rule: solid 8px;
 column-rule: solid blue;
 column-rule: thick inset blue;
@@ -34,34 +33,33 @@ column-rule: inherit;
 column-rule: initial;
 column-rule: revert;
 column-rule: unset;
-
+``` -

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

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

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

公式定義

+## 公式定義 -

{{cssinfo}}

+{{cssinfo}} -

形式文法

+## 形式文法 {{csssyntax}} -

+## 例 -

例 1

+### 例 1 -
/* "medium dotted currentcolor" と同じ */
+```css
+/* "medium dotted currentcolor" と同じ */
 p.foo { column-rule: dotted; }
 
 /* "medium solid blue" と同じ */
@@ -71,47 +69,47 @@ p.bar { column-rule: solid blue; }
 p.baz { column-rule: solid 8px; }
 
 p.abc { column-rule: thick inset blue; }
-
+``` -

例 2

+### 例 2 -

HTML

+#### HTML -
<p class="content-box">
+```html
+

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

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

結果

+#### 結果 -

{{EmbedLiveSample('Example_2')}}

+{{EmbedLiveSample('Example_2')}} -

仕様書

+## 仕様書 {{Specifications}} -

ブラウザーの互換性

+## ブラウザーの互換性 -

{{Compat}}

+{{Compat}} -

関連情報

+## 関連情報 - +- [段組みレイアウト](/ja/docs/Learn/CSS/CSS_layout/Multiple-column_Layout) +- {{CSSXref("column-rule-style")}} +- {{CSSXref("column-rule-width")}} +- {{CSSXref("column-rule-color")}} -- cgit v1.2.3-54-g00ecf