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-count/index.html | 98 -------------------------------- files/ja/web/css/column-count/index.md | 98 ++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+), 98 deletions(-) delete mode 100644 files/ja/web/css/column-count/index.html create mode 100644 files/ja/web/css/column-count/index.md (limited to 'files/ja/web/css/column-count') diff --git a/files/ja/web/css/column-count/index.html b/files/ja/web/css/column-count/index.html deleted file mode 100644 index 04e0ee9338..0000000000 --- a/files/ja/web/css/column-count/index.html +++ /dev/null @@ -1,98 +0,0 @@ ---- -title: column-count -slug: Web/CSS/column-count -tags: - - CSS - - CSS プロパティ - - CSS 段組みレイアウト - - リファレンス - - 段組み -translation_of: Web/CSS/column-count ---- -
{{CSSRef}}
- -

CSScolumn-count プロパティは、指定された段数で要素のコンテンツを分割します。

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

構文

- -
/* キーワード値 */
-column-count: auto;
-
-/* <integer> 値 */
-column-count: 3;
-
-/* グローバル値 */
-column-count: inherit;
-column-count: initial;
-column-count: unset;
- -

- -
-
auto
-
段数は {{cssxref("column-width")}} など、他の CSS プロパティによって決定されます。
-
{{cssxref("<integer>")}}
-
正の{{cssxref("<integer>", "整数")}}のみで、要素の中で流れる理想的な列の数を記述します。 {{cssxref("column-width")}} が auto 以外の値で一緒に設定された場合は、最大の列数を示します。
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<p class="content-box">
-  This is a bunch of text split into three columns
-  using the CSS `column-count` property. The text
-  is equally distributed over the columns.
-</p>
-
- -

CSS

- -
.content-box {
-  column-count: 3;
-}
-
- -

結果

- -

{{EmbedLiveSample('Example', 'auto', 120)}}

- -

仕様書

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

{{cssinfo}}

- -

ブラウザーの対応

- -

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

- -

関連情報

- - diff --git a/files/ja/web/css/column-count/index.md b/files/ja/web/css/column-count/index.md new file mode 100644 index 0000000000..04e0ee9338 --- /dev/null +++ b/files/ja/web/css/column-count/index.md @@ -0,0 +1,98 @@ +--- +title: column-count +slug: Web/CSS/column-count +tags: + - CSS + - CSS プロパティ + - CSS 段組みレイアウト + - リファレンス + - 段組み +translation_of: Web/CSS/column-count +--- +
{{CSSRef}}
+ +

CSScolumn-count プロパティは、指定された段数で要素のコンテンツを分割します。

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

構文

+ +
/* キーワード値 */
+column-count: auto;
+
+/* <integer> 値 */
+column-count: 3;
+
+/* グローバル値 */
+column-count: inherit;
+column-count: initial;
+column-count: unset;
+ +

+ +
+
auto
+
段数は {{cssxref("column-width")}} など、他の CSS プロパティによって決定されます。
+
{{cssxref("<integer>")}}
+
正の{{cssxref("<integer>", "整数")}}のみで、要素の中で流れる理想的な列の数を記述します。 {{cssxref("column-width")}} が auto 以外の値で一緒に設定された場合は、最大の列数を示します。
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<p class="content-box">
+  This is a bunch of text split into three columns
+  using the CSS `column-count` property. The text
+  is equally distributed over the columns.
+</p>
+
+ +

CSS

+ +
.content-box {
+  column-count: 3;
+}
+
+ +

結果

+ +

{{EmbedLiveSample('Example', 'auto', 120)}}

+ +

仕様書

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

{{cssinfo}}

+ +

ブラウザーの対応

+ +

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

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf