HTML - DOM样式对象columnFill属性



HTML DOM样式对象columnFill属性指定内容在分成多列时如何在列中排列。

语法

设置 columnFill 属性
object.style.columnFill= "balance | auto | initial | inherit";
获取 columnFill 属性
object.style.columnFill;

属性值

描述
balance 这是默认值,它平衡各列。
auto 在此情况下,列将按顺序填充,长度不同。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的 columnFill 属性。

HTML DOM 样式对象“columnFill”属性示例

以下示例将段落元素设置为 auto 和 balance。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object columnFill Property
    </title>
    <style>
        #color {
            column-count: 4;
        }
    </style>
</head>
<body>
    <button onclick="fun()">Auto</button>
    <button onclick="funTwo()">Balance</button>
    <p id="color">
        CSS is the acronym for "Cascading Style Sheet".
        It's a style sheet language used for describing
        the presentation of a document written in a markup
        language like HTML. CSS helps the web developers to
        control the layout and other visual aspects of the
        web pages. CSS plays a crucial role in modern web
        development by providing the tools necessary to create
        visually appealing, accessible, and responsive websites.
    </p>
    <script>
        function fun() {
            document.getElementById("color")
                .style.columnFill = "auto";
        }
        function funTwo() {
            document.getElementById("color")
                .style.columnFill = "balance";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
columnFill 是 50 是 12 是 52 是 9 是 37
html_dom_style_object_reference.htm
广告