最新的Web開發教程
 

Style columnCount Property

<Style對象

鴻溝的div元素文成三列:

document.getElementById("myDIV").style.columnCount = 3;
試一試»

定義和用法

columnCount屬性指定列的元素應分為數。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

ColumnCount屬性在Internet Explorer 10和Opera支持。

Firefox支持替代方案,MozColumnCount財產。

Safari和Chrome支持替代方案,WebkitColumnCount財產。

注:在Internet Explorer 9及更早版本不支持columnCount屬性。


句法

返回columnCount屬性:

object .style.columnCount

設置columnCount屬性:

object .style.columnCount=" 屬性值
描述
number 列的最佳數量到其中的元件的內容將被流入
auto 默認值。 列的數目將被其他特性來確定,如例如"column-width"
initial 將此屬性設置為默認值。 閱讀關於初始
inherit 繼承其父元素此屬性。 閱讀關於繼承

技術細節

默認值: 汽車
返回值: 一個字符串,表示元件的列數屬性
CSS版本 CSS3

相關頁面

CSS3教程: CSS3多列

CSS參考: column-count property


<Style對象