• 技术文章 >web前端 >css教程

    css column-rule-width属性怎么用

    silencementsilencement2019-05-27 16:47:18原创1170

    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>

    运行结果

    4fae5e5a1851c450ef8d7fbd3c9c835.png

    以上就是css column-rule-width属性怎么用的详细内容,更多请关注php中文网其它相关文章!

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    上一篇:css font-variant属性怎么用 下一篇:css clip属性怎么用

    相关文章推荐

    • css target-name属性怎么用• css outline-width属性怎么用• css list-style-position属性怎么用

    全部评论我要评论

  • 取消发布评论发送
  • 1/1

    PHP中文网