diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/css/column-span | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/css/column-span')
-rw-r--r-- | files/ja/web/css/column-span/index.html | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/files/ja/web/css/column-span/index.html b/files/ja/web/css/column-span/index.html new file mode 100644 index 0000000000..63a153b5c6 --- /dev/null +++ b/files/ja/web/css/column-span/index.html @@ -0,0 +1,117 @@ +--- +title: column-span +slug: Web/CSS/column-span +tags: + - CSS + - CSS Multi-column Layout + - CSS Property + - Reference + - 'recipe:css-property' +translation_of: Web/CSS/column-span +--- +<div>{{CSSRef}}</div> + +<p><strong><code>column-span</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、値に <code>all</code> を設定した場合、段組みレイアウトで要素をすべての段にまたがらせることができます。</p> + +<div>{{EmbedInteractiveExample("pages/css/column-span.html")}}</div> + +<pre class="brush:css no-line-numbers notranslate">/* キーワード値 */ +column-span: none; +column-span: all; + +/* グローバル値 */ +column-span: inherit; +column-span: initial; +column-span: unset; +</pre> + +<p>複数の段にまたがる要素は、<ruby><strong>スパニング要素</strong><rp> (</rp><rt>spanning element</rt><rp>) </rp></ruby>と呼びます。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<p><code>column-span</code> プロパティは以下に挙げたキーワード値のうちの一つで指定します。</p> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><code>none</code></dt> + <dd>この要素は複数の段にまたがりません。</dd> + <dt><code>all</code></dt> + <dd>この要素がすべての段にまたがります。この要素よりも前に現れた通常フローのコンテンツは、自動的にすべての段で均等になります。この要素は新しいブロック整形コンテキストを生成します。</dd> +</dl> + +<h2 id="Formal_definition" name="Formal_definition">公式定義</h2> + +<p>{{cssinfo}}</p> + +<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2> + +<pre class="syntaxbox notranslate">{{csssyntax}}</pre> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Making_a_heading_span_columns" name="Making_a_heading_span_columns">段をまたぐ見出しの設定</h3> + +<p>この例では、見出しが記事のすべての段にまたがって作成されます。</p> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html notranslate"><article> + <h2>Header spanning all of the columns</h2> + <p> + The h2 should span all the columns. The rest + of the text should be distributed among the columns. + </p> + <p>This is a bunch of text split into three columns using the CSS `columns` property. The text is equally distributed over the columns.</p> + <p>This is a bunch of text split into three columns using the CSS `columns` property. The text is equally distributed over the columns.</p> + <p>This is a bunch of text split into three columns using the CSS `columns` property. The text is equally distributed over the columns.</p> + <p>This is a bunch of text split into three columns using the CSS `columns` property. The text is equally distributed over the columns.</p> +</article> +</pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush:css notranslate">article { + columns: 3; +} + +h2 { + column-span: all; +} +</pre> + +<h4 id="Result" name="Result">結果</h4> + +<p>{{EmbedLiveSample('Making_a_heading_span_columns', 'auto', 260)}}</p> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<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', '#column-span', 'column-span')}}</td> + <td>{{Spec2('CSS3 Multicol')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("css.properties.column-span")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/Web/HTML/Inline_elements">インライン要素</a></li> + <li>{{domxref("HTMLSpanElement")}} </li> +</ul> |