diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-29 22:27:29 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-08 13:55:13 +0900 |
commit | 3a89b5008c1d8f07e57a6d7595b3967c63b51f8e (patch) | |
tree | 91c668eb7306a9c42e0647f7cf4ac57d2bd93fe5 /files/ja/web/css/column-rule-style/index.md | |
parent | 696248fc77134e9a9001c60c549ead2573d829f4 (diff) | |
download | translated-content-3a89b5008c1d8f07e57a6d7595b3967c63b51f8e.tar.gz translated-content-3a89b5008c1d8f07e57a6d7595b3967c63b51f8e.tar.bz2 translated-content-3a89b5008c1d8f07e57a6d7595b3967c63b51f8e.zip |
CSS Columns 関係のプロパティを変換準備
Diffstat (limited to 'files/ja/web/css/column-rule-style/index.md')
-rw-r--r-- | files/ja/web/css/column-rule-style/index.md | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/files/ja/web/css/column-rule-style/index.md b/files/ja/web/css/column-rule-style/index.md new file mode 100644 index 0000000000..a27908eead --- /dev/null +++ b/files/ja/web/css/column-rule-style/index.md @@ -0,0 +1,96 @@ +--- +title: column-rule-style +slug: Web/CSS/column-rule-style +tags: + - CSS + - CSS プロパティ + - CSS 段組みレイアウト + - Reference + - 段組み +translation_of: Web/CSS/column-rule-style +--- +<div>{{CSSRef}}</div> + +<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>column-rule-style</code></strong> プロパティは、段組みレイアウトで段の間に引かれる線 (段間罫) のスタイルを設定します。</p> + +<div>{{EmbedInteractiveExample("pages/css/column-rule-style.html")}}</div> + +<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">/* <'border-style'> の値 */ +column-rule-style: none; +column-rule-style: hidden; +column-rule-style: dotted; +column-rule-style: dashed; +column-rule-style: solid; +column-rule-style: double; +column-rule-style: groove; +column-rule-style: ridge; +column-rule-style: inset; +column-rule-style: outset; + +/* グローバル値 */ +column-rule-style: inherit; +column-rule-style: initial; +column-rule-style: unset; +</pre> + +<p><code>column-rule-style</code> プロパティは、単一の <code><'border-style'></code> 値で指定します。</p> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><code><'border-style'></code></dt> + <dd>{{ cssxref("border-style") }} で定義されているキーワードで、段間罫のスタイルを指定します。スタイルは collasped の境界線モデルで解釈されます。</dd> +</dl> + +<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> + +{{csssyntax}} + +<h2 id="Example" name="Example">例</h2> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html"><p>This is a bunch of text split into three columns. + The `column-rule-style` property is used to change + the style of the line that is drawn between columns. + Don't you think that's wonderful?</p></pre> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css">p { + column-count: 3; + column-rule-style: dashed; +}</pre> + +<h3 id="Result" name="Result">結果</h3> + +<p>{{ EmbedLiveSample('Example') }}</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', '#crs', 'column-rule-style') }}</td> + <td>{{ Spec2('CSS3 Multicol') }}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> + +<p>{{Compat("css.properties.column-rule-style")}}</p> |