column-rule - CSS: Cascading Style Sheets 编辑
The column-rule
shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
It is a shorthand property that sets the individual column-rule-*
properties in a single, convenient declaration: column-rule-width
, column-rule-style
, and column-rule-color
.
Note: As with all shorthand properties, any individual value that is not specified is set to its corresponding initial value (possibly overriding values previously set using non-shorthand properties).
Syntax
column-rule: dotted;
column-rule: solid 8px;
column-rule: solid blue;
column-rule: thick inset blue;
/* Global values */
column-rule: inherit;
column-rule: initial;
column-rule: unset;
The column-rule
property is specified as one, two, or three of the values listed below, in any order.
Values
<'column-rule-width'>
- Is a
<length>
or one of the three keywords,thin
,medium
, orthick
. Seeborder-width
for details. <'column-rule-style'>
- See
border-style
for possible values and details. <'column-rule-color'>
- Is a
<color>
value.
Formal definition
Initial value | as each of the properties of the shorthand:
|
---|---|
Applies to | multicol elements |
Inherited | no |
Computed value | as each of the properties of the shorthand:
|
Animation type | as each of the properties of the shorthand:
|
Formal syntax
<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>
Examples
Example 1
/* Same as "medium dotted currentcolor" */
p.foo { column-rule: dotted; }
/* Same as "medium solid blue" */
p.bar { column-rule: solid blue; }
/* Same as "8px solid currentcolor" */
p.baz { column-rule: solid 8px; }
p.abc { column-rule: thick inset blue; }
Example 2
HTML
<p class="content-box">
This is a bunch of text split into three columns.
Take note of how the `column-rule` property is used
to adjust the style, width, and color of the rule
that appears between the columns.
</p>
CSS
.content-box {
padding: 0.3em;
background: #ff7;
column-count: 3;
column-rule: inset 2px #33f;
}
Result
Specifications
Specification | Status | Comment |
---|---|---|
CSS Multi-column Layout Module The definition of 'column-rule' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论