From 3a89b5008c1d8f07e57a6d7595b3967c63b51f8e Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 29 Dec 2021 22:27:29 +0900 Subject: CSS Columns 関係のプロパティを変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/column-rule-width/index.html | 96 --------------------------- files/ja/web/css/column-rule-width/index.md | 96 +++++++++++++++++++++++++++ 2 files changed, 96 insertions(+), 96 deletions(-) delete mode 100644 files/ja/web/css/column-rule-width/index.html create mode 100644 files/ja/web/css/column-rule-width/index.md (limited to 'files/ja/web/css/column-rule-width') diff --git a/files/ja/web/css/column-rule-width/index.html b/files/ja/web/css/column-rule-width/index.html deleted file mode 100644 index c0241e7a31..0000000000 --- a/files/ja/web/css/column-rule-width/index.html +++ /dev/null @@ -1,96 +0,0 @@ ---- -title: column-rule-width -slug: Web/CSS/column-rule-width -tags: - - CSS - - CSS Property - - CSS プロパティ - - CSS 段組みレイアウト - - Reference - - 段組み -translation_of: Web/CSS/column-rule-width ---- -
{{ CSSRef}}
- -

column-rule-widthCSS のプロパティで、段組みレイアウトで段間に引かれる線の太さを設定します。

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

構文

- -
/* キーワード値 */
-column-rule-width: thin;
-column-rule-width: medium;
-column-rule-width: thick;
-
-/* <length> 値 */
-column-rule-width: 1px;
-column-rule-width: 2.5em;
-
-/* グローバル値 */
-column-rule-width: inherit;
-column-rule-width: initial;
-column-rule-width: unset;
-
- -

column-rule-width プロパティは単一の <'border-width'> の値で指定します。

- -

- -
-
<'border-width'>
-
{{ cssxref("border-width") }} で定められたキーワードで段間罫の太さを指定します。 {{cssxref("<length>")}} または thinmediumthick のキーワードのいずれかです。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<p>This is a bunch of text split into three columns.
-   The `column-rule-width` property is used to change
-   the width of the line that is drawn between columns.
-   Don't you think that's wonderful?</p>
- -

CSS

- -
p {
-  column-count: 3;
-  column-rule-style: solid;
-  column-rule-width: thick;
-}
-
- -

結果

- -

{{EmbedLiveSample("Example")}}

- -

仕様書

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

{{cssinfo}}

- -

ブラウザーの対応

- -

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

diff --git a/files/ja/web/css/column-rule-width/index.md b/files/ja/web/css/column-rule-width/index.md new file mode 100644 index 0000000000..c0241e7a31 --- /dev/null +++ b/files/ja/web/css/column-rule-width/index.md @@ -0,0 +1,96 @@ +--- +title: column-rule-width +slug: Web/CSS/column-rule-width +tags: + - CSS + - CSS Property + - CSS プロパティ + - CSS 段組みレイアウト + - Reference + - 段組み +translation_of: Web/CSS/column-rule-width +--- +
{{ CSSRef}}
+ +

column-rule-widthCSS のプロパティで、段組みレイアウトで段間に引かれる線の太さを設定します。

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

構文

+ +
/* キーワード値 */
+column-rule-width: thin;
+column-rule-width: medium;
+column-rule-width: thick;
+
+/* <length> 値 */
+column-rule-width: 1px;
+column-rule-width: 2.5em;
+
+/* グローバル値 */
+column-rule-width: inherit;
+column-rule-width: initial;
+column-rule-width: unset;
+
+ +

column-rule-width プロパティは単一の <'border-width'> の値で指定します。

+ +

+ +
+
<'border-width'>
+
{{ cssxref("border-width") }} で定められたキーワードで段間罫の太さを指定します。 {{cssxref("<length>")}} または thinmediumthick のキーワードのいずれかです。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<p>This is a bunch of text split into three columns.
+   The `column-rule-width` property is used to change
+   the width of the line that is drawn between columns.
+   Don't you think that's wonderful?</p>
+ +

CSS

+ +
p {
+  column-count: 3;
+  column-rule-style: solid;
+  column-rule-width: thick;
+}
+
+ +

結果

+ +

{{EmbedLiveSample("Example")}}

+ +

仕様書

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

{{cssinfo}}

+ +

ブラウザーの対応

+ +

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

-- cgit v1.2.3-54-g00ecf