--- title: column-rule-style slug: Web/CSS/column-rule-style tags: - CSS - CSS プロパティ - CSS 段組みレイアウト - Reference - 段組み translation_of: Web/CSS/column-rule-style ---
CSS の column-rule-style
プロパティは、段組みレイアウトで段の間に引かれる線 (段間罫) のスタイルを設定します。
このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 https://github.com/mdn/interactive-examples をクローンしてプルリクエストを送信してください。
/* <'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;
column-rule-style
プロパティは、単一の <'border-style'>
値で指定します。
<'border-style'>
<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>
p { column-count: 3; column-rule-style: dashed; }
{{ EmbedLiveSample('Example') }}
仕様書 | 状態 | 備考 |
---|---|---|
{{ SpecName('CSS3 Multicol', '#crs', 'column-rule-style') }} | {{ Spec2('CSS3 Multicol') }} | 初回定義 |
{{cssinfo}}
{{Compat("css.properties.column-rule-style")}}