Style columns 属性
定义和用法
columns 属性是一个速记属性,用于设置 columnWidth 和 columnCount。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
columns | 50.0 | 10.0 | 52.0 | 10.0 | 37.0 |
语法
返回 columns 属性:
object.style.columns
设置 columns 属性:
object.style.columns = "auto|column-width column-count|initial|inherit"
属性值
值 | 描述 |
---|---|
auto | 默认值。设置 column-width 为 "auto",column-count 为 "auto"。 |
columnWidth | 列的宽度。 |
columnCount | 列数。 |
initial | 设置该属性为它的默认值。请参阅 initial |
inherit | 从父元素继承该属性。请参阅 inherit |
技术细节
默认值: | auto auto |
---|---|
返回值: | 字符串,表示元素的 columns 属性。 |
CSS 版本 | CSS3 |
相关页面
CSS3 tutorial: CSS3 Multiple Columns
CSS 参考手册: columns 属性
❮ Style 对象