
css column-rule-width属性定义及用法
在css中,column-rule-width属性是用在多列布局元素中,用来设置列与列之间分割线的宽度。通常与column-count、column-rule-style等多列布局属性一起使用,使用它的前提条件是,通过column-count、column等属性定义了多列布局,并且设置了列与列之间的分割样式(如:column-rule-style属性定义了分割线),单独使用column-rule-width属性是没有效果的;
css column-rule-width属性语法格式
css语法:column-rule-width: thin / medium / thick / length;(例:column-rule-width: 16px;)
JavaScript语法:object.style.columnRuleWidth="18px"
css column-rule-width属性值说明
thin:细的分隔线
medium:中等的分隔线
thick :粗的分隔线
length:自定义宽度的分隔线(如:12px)
实例
<!DOCTYPE html><html><head><meta charset="utf-8" /><title>css3 column-rule-width属性设置列之间分割线的宽度笔记</title><style type="text/css">body{background: #ddd;}div{width: 400px;border:1px solid blueviolet;margin-top:10px;: ;}.thin{column-count:3;column-rule-style:solid;column-rule-width:thin;}.thick{column-count:3;column-rule-style:solid;column-rule-width:thick;}.length{column-count:3;column-rule-style:solid;column-rule-width:8px;}</style></head><body><div class="thin">column-rule-width:thin;演示,设置细分割线。这是为了演示效果多写的</div><div class="thick">column-rule-width:thick;演示,设置粗分割线。这是为了演示效果多写的</div><div class="length">column-rule-width:8px;,设置分割线的宽度为8px。这是为了演示效果多写的</div></body></html>运行结果










