ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# column-rule-width **版本:CSS3** 继承性:无 ### 语法: **column-rule-width**:*<length>* **相关属性**:[column-rule-style](# "column-rule-style") , [column-rule-color](# "column-rule-color") ### 取值: *<length>*:由浮点数字和单位标识符组成的长度值。不可为负值。 ### 说明: 1. 定义每栏之间边框的宽度。 | 引擎类型 | Gecko | Webkit | Presto | |-----|-----|-----|-----| | column-rule-width | -moz-column-rule-width | -webkit-column-rule-width |   | |   |   |   |   | ### 兼容性: <table><thead><tr><th class="type">类型</th> <th class="type_ie"><img src="https://box.kancloud.cn/2015-09-02_55e5d38b833b1.png" alt="IE" />Internet Explorer</th> <th class="type_firefox"><img src="https://box.kancloud.cn/2015-09-02_55e5d38b8a9b0.png" alt="Firefox" />Firefox</th> <th class="type_chrome"><img src="https://box.kancloud.cn/2015-09-02_55e5d38b93251.png" alt="Chrome" />Chrome</th> <th class="type_opera"><img src="https://box.kancloud.cn/2015-09-02_55e5d38bb18c2.png" alt="Opera" />Opera</th> <th class="type_safari"><img src="https://box.kancloud.cn/2015-09-02_55e5d38bb99a0.png" alt="Safari" />Safari</th> </tr></thead><tbody><tr><td rowspan="4" class="version">版本</td> <td class="support no"><span>(×)</span>IE6</td> <td class="support no"><span>(×)</span>Firefox 2.0</td> <td class="support yes"><span>(√)</span>Chrome 1.0.x</td> <td class="support no"><span>(×)</span>Opera 9.63</td> <td class="support yes"><span>(√)</span>Safari 3.1</td> </tr><tr><td class="support no"><span>(×)</span>IE7</td> <td class="support no"><span>(×)</span>Firefox 3.0</td> <td class="support yes"><span>(√)</span>Chrome 2.0.x</td> <td></td> <td class="support yes"><span>(√)</span>Safari 4</td> </tr><tr><td class="support no"><span>(x)</span>IE8</td> <td class="support yes"><span>(√)</span>Firefox 3.5</td> <td> </td> <td> </td> <td> </td> </tr><tr><td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr></tbody></table> ### 示例: ![column-rule-width Demo](https://box.kancloud.cn/2015-09-02_55e5d38bd24f7.png) 例子里-webkit-column-count:2;的意思是一共两列; -webkit-column-gap:200px;的意思是每列之间有200px的间距; -webkit-column-rule-width:100px;的意思是每列之间的边框的宽度为100px; -webkit-column-rule-style:solid;的意思是每列之间的边框的样式是实线; -webkit-column-rule-color:#10427A;的意思是每列之间的边框的颜色值是#10427A。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Content-Language" content="utf-8" /><meta name="robots" content="all" /><meta name="author" content="Tencent-ISRD" /><meta name="Copyright" content="Tencent" /><style type="text/css" media="screen"><!--.wrapper {width:703px; padding:10px; margin:40px auto 0; border:1px solid #333333;}.wrapper .inner { padding:5px 10px;}.wrapper .inner h2 {color:#333333; background:#DCDCDC; padding:5px 8px;}.wrapper .inner .cont {color:#333333; font-size:14px; line-height:180%; text-indent:2em;}.wrapper .inner .cont p {margin-bottom:15px; line-height:180%;}.wrapper .inner .cont .column-rule-width {-webkit-column-count:2; -webkit-column-gap:200px; -webkit-column-rule-width:100px; -webkit-column-rule-style:solid; -webkit-column-rule-color:#10427A;-moz-column-count:2; -moz-column-gap:200px; -moz-column-rule-width:100px; -moz-column-rule-style:solid; -moz-column-rule-color:#10427A;}--></style><title>column-rule-width</title></head><body><div class="wrapper"> <div class="inner"> <h2>column-rule-width</h2> <div class="cont"> <div class="column-rule-width"> <p><strong>ISD Webteam</strong>是一个设计团队,即<strong>腾讯互联网业务系统网站组</strong>。</p> <p><strong>ISD Webteam</strong>关注于网站产品的体验设计,包括网站的可用性、视觉风格以及网页重构。</p> <p>我们的产品类型挺丰富,有<strong>空间(Qzone)</strong>,有<strong>会员(QQVIP)</strong>,有<strong>QQ秀(QQShow)</strong>,还有<strong>音乐(QQMusic)</strong>,项目挺多,工作也挺忙,无时无刻不在体现互联网行业的特征。</p> <p>我们的成员类型挺丰富,有安静的,有狂躁的,有智勇双全的,也有身can志不坚的,总体上还算相亲相爱,偶尔也会你打我闹。</p> <p><strong>“让我们的互联网服务像水和电一样融入到人们的生活当中”</strong>,是我们的梦想,距离目标还有很长的路要走,至今我们仍在不懈的努力,如果你愿意,欢迎和我们一起。</p> </div> </div> </div></div></body></html> 复制代码 Copyright © 2009 [Tencent ISD webteam](http://webteam.tencent.com/). All Rights Reserved ### 快速跳转 - [语法](# "跳转到“语法”") - [取值](# "跳转到“取值”") - [说明](# "跳转到“说明”") - [兼容性](# "跳转到“兼容性”") - [示例](# "跳转到“示例”")