aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-12-29 22:42:34 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-08 13:55:13 +0900
commited3ae6720bc1c0bba8b194a6c5e903116b1c79bf (patch)
tree7587e403d595ddd289882907ecde559577f97847 /files/ja/web/css
parent3a89b5008c1d8f07e57a6d7595b3967c63b51f8e (diff)
downloadtranslated-content-ed3ae6720bc1c0bba8b194a6c5e903116b1c79bf.tar.gz
translated-content-ed3ae6720bc1c0bba8b194a6c5e903116b1c79bf.tar.bz2
translated-content-ed3ae6720bc1c0bba8b194a6c5e903116b1c79bf.zip
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css')
-rw-r--r--files/ja/web/css/column-count/index.md108
1 files changed, 50 insertions, 58 deletions
diff --git a/files/ja/web/css/column-count/index.md b/files/ja/web/css/column-count/index.md
index 04e0ee9338..d7754455af 100644
--- a/files/ja/web/css/column-count/index.md
+++ b/files/ja/web/css/column-count/index.md
@@ -3,96 +3,88 @@ title: column-count
slug: Web/CSS/column-count
tags:
- CSS
- - CSS プロパティ
- CSS 段組みレイアウト
+ - CSS プロパティ
+ - レイアウト
- リファレンス
- - 段組み
+ - column-count
+ - columns
+ - recipe:css-property
+browser-compat: css.properties.column-count
translation_of: Web/CSS/column-count
---
-<div>{{CSSRef}}</div>
+{{CSSRef}}
-<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>column-count</code></strong> プロパティは、指定された段数で要素のコンテンツを分割します。</p>
+**`column-count`** は [CSS](/ja/docs/Web/CSS) のプロパティで、指定された段数で要素の内容物を分割します。
-<div>{{EmbedInteractiveExample("pages/css/column-count.html")}}</div>
+{{EmbedInteractiveExample("pages/css/column-count.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">/* キーワード値 */
+```css
+/* キーワード値 */
column-count: auto;
-/* &lt;integer&gt; 値 */
+/* <integer> 値 */
column-count: 3;
/* グローバル値 */
column-count: inherit;
column-count: initial;
-column-count: unset;</pre>
+column-count: revert;
+column-count: unset;
+```
+
+### 値
-<h3 id="Values" name="Values">値</h3>
+- `auto`
+ - : 段数は {{cssxref("column-width")}} など、他の CSS プロパティによって決定されます。
+- {{cssxref("&lt;integer&gt;")}}
+ - : 正の{{cssxref("&lt;integer&gt;", "整数")}}のみで、要素の中で流れる理想的な列の数を記述します。 {{cssxref("column-width")}} が `auto` 以外の値で一緒に設定された場合は、最大の列数を示します。
-<dl>
- <dt><code>auto</code></dt>
- <dd>段数は {{cssxref("column-width")}} など、他の CSS プロパティによって決定されます。</dd>
- <dt>{{cssxref("&lt;integer&gt;")}}</dt>
- <dd>正の{{cssxref("&lt;integer&gt;", "整数")}}のみで、要素の中で流れる理想的な列の数を記述します。 {{cssxref("column-width")}} が <code>auto</code> 以外の値で一緒に設定された場合は、最大の列数を示します。</dd>
-</dl>
+## 公式定義
-<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
+{{cssinfo}}
+
+## 形式文法
{{csssyntax}}
-<h2 id="Example" name="Example">例</h2>
+## 例
+
+### 段落を 3 つの段に分割
-<h3 id="HTML">HTML</h3>
+#### HTML
-<pre class="brush: html">&lt;p class="content-box"&gt;
- This is a bunch of text split into three columns
- using the CSS `column-count` property. The text
- is equally distributed over the columns.
-&lt;/p&gt;
-</pre>
+```html
+<p class="content-box">
+ これは、 3 つの段に分割されたテキストの束です。
+ CSS の `column-count` プロパティを使用しています。
+ テキストはそれぞれの段に均等に配置されています。
+</p>
+```
-<h3 id="CSS">CSS</h3>
+#### CSS
-<pre class="brush: css">.content-box {
+```css
+.content-box {
column-count: 3;
}
-</pre>
-
-<h3 id="Result" name="Result">結果</h3>
+```
-<p>{{EmbedLiveSample('Example', 'auto', 120)}}</p>
+#### 結果
-<h2 id="Specifications" name="Specifications">仕様書</h2>
+{{EmbedLiveSample('Splitting_a_paragraph_across_three_columns', 'auto', 120)}}
-<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', '#cc', 'column-count')}}</td>
- <td>{{Spec2('CSS3 Multicol')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
+## 仕様書
-<p>{{cssinfo}}</p>
+{{Specifications}}
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
+## ブラウザーの互換性
-<p>{{Compat("css.properties.column-count")}}</p>
+{{Compat}}
-<h2 id="See_Also" name="See_Also">関連情報</h2>
+## 関連情報
-<ul>
- <li><a href="/ja/docs/Learn/CSS/CSS_layout/Multiple-column_Layout">段組みレイアウト</a> (レイアウトの学習)</li>
- <li><a href="/ja/docs/Web/CSS/CSS_Columns/Basic_Concepts_of_Multicol">段組みの基本概念</a></li>
-</ul>
+- [段組みレイアウト](/ja/docs/Learn/CSS/CSS_layout/Multiple-column_Layout) (レイアウトの学習)
+- [段組みの基本概念](/ja/docs/Web/CSS/CSS_Columns/Basic_Concepts_of_Multicol)