column-rule-widthの評価
頻出度
(3.0)
重要度
(3.0)
総合評価
(3.0)
目次
1.column-rule-widthとは?
column-rule-widthプロパティは段組みの罫線の幅を指定する際に利用します。
値の指定方法は以下の通りです。
{ column-rule-width: 値; }
値の指定方法
- thin
- medium
- thick
- 任意の数値+単位
2.column-rule-widthの使い方
それではcolumn-rule-widthの使い方をみていきましょう。
以下のようにすることで段組みの罫線の幅を太い罫線で表示させます。
.text {
column-count: 3;
column-rule-style: solid;
column-rule-width: thick;
}
他にも値を設定できるのでいろいろと試してみることをオススメします!