CSS中的column-rule-width属性用于更改列规则的宽度,即列之间的垂直线。
用法:
column-rule-width:length|thin|medium|thick|initial|inherit;
属性值:
- thin:它用于在列之间设置精简规则。
- medium:它用于在列之间创建中等宽度的规则。这是默认宽度。
- thick:它在列之间创建一个粗细宽度规则。
- length:用于按长度设置宽度。它不取负值。
- initial:它用于将column-rule-width属性设置为其默认值。
- inherit:此属性是从其父级继承的。
例:
<!DOCTYPE html>
<html>
<head>
<title>
column-rule-width property
</title>
<!-- column-rule-width CSS property -->
<style>
.length {
column-count:3;
column-rule:solid green;
column-gap:40px;
column-rule-width:10px;
text-align:justify;
}
.thin {
column-count:3;
column-rule:solid green;
column-gap:40px;
column-rule-width:thin;
text-align:justify;
}
.thick {
column-count:3;
column-rule:solid green;
column-gap:40px;
column-rule-width:thick;
text-align:justify;
}
.medium {
column-count:3;
column-rule:solid green;
column-gap:40px;
column-rule-width:medium;
text-align:justify;
}
.initial {
column-count:3;
column-rule:solid green;
column-gap:40px;
column-rule-width:initial;
text-align:justify;
}
h2 {
text-align:center;
}
</style>
</head>
<body>
<!-- column-rule-width:length; property -->
<h2>column-rule-width:length;</h2>
<div class = "length">
Prepare for the Recruitment drive of product
based companies like Microsoft, Amazon, Adobe
etc with a free online placement preparation
course. The course focuses on various MCQ's
& Coding question likely to be asked in the
interviews & make your upcoming placement
season efficient and successful.
</div>
<!-- column-rule-width:thin; property -->
<h2>column-rule-width:thin;</h2>
<div class = "thin">
Prepare for the Recruitment drive of product
based companies like Microsoft, Amazon, Adobe
etc with a free online placement preparation
course. The course focuses on various MCQ's
& Coding question likely to be asked in the
interviews & make your upcoming placement
season efficient and successful.
</div>
<!-- column-rule-width:thick; property -->
<h2>column-rule-width:thick;</h2>
<div class = "thick">
Prepare for the Recruitment drive of product
based companies like Microsoft, Amazon, Adobe
etc with a free online placement preparation
course. The course focuses on various MCQ's
& Coding question likely to be asked in the
interviews & make your upcoming placement
season efficient and successful.
</div>
<!-- column-rule-width:medium; property -->
<h2>column-rule-width:medium;</h2>
<div class = "medium">
Prepare for the Recruitment drive of product
based companies like Microsoft, Amazon, Adobe
etc with a free online placement preparation
course. The course focuses on various MCQ's
& Coding question likely to be asked in the
interviews & make your upcoming placement
season efficient and successful.
</div>
<!-- column-rule-width:initial; property -->
<h2>column-rule-width:initial;</h2>
<div class = "initial">
Prepare for the Recruitment drive of product
based companies like Microsoft, Amazon, Adobe
etc with a free online placement preparation
course. The course focuses on various MCQ's
& Coding question likely to be asked in the
interviews & make your upcoming placement
season efficient and successful.
</div>
</body>
</html>
输出:
支持的浏览器:下面列出了column-rule-width属性支持的浏览器:
- Google Chrome 50.0、4.0 -webkit-
- Internet Explorer 10.0
- Firefox 52.0、2.0 -moz-
- Safari 9.0、3.1 -webkit-
- Opera 37.0、15.0 -webkit-,11.1
相关用法
- HTML Style columnRuleWidth用法及代码示例
- CSS transition-property用法及代码示例
- CSS nav-up用法及代码示例
- CSS right属性用法及代码示例
- CSS nav-right用法及代码示例
- CSS nav-down用法及代码示例
- CSS top属性用法及代码示例
- CSS all属性用法及代码示例
- CSS column-gap用法及代码示例
- CSS filter属性用法及代码示例
- CSS transform属性用法及代码示例
- HTML DOM id用法及代码示例
- CSS direction属性用法及代码示例
- CSS z-index用法及代码示例
- CSS content属性用法及代码示例
注:本文由纯净天空筛选整理自Husban大神的英文原创作品 CSS | column-rule-width Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。