HTML - DOM样式对象columnWidth属性



HTML DOM 样式对象columnWidth属性用于设置或获取列的宽度。

语法

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

属性值

描述
auto 这是默认值,浏览器确定列宽。
length 指定列的宽度。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

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

在下面的示例中,段落根据指定的列宽分成多列。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object columnWidth Property
    </title>
</head>
<body>
    <button onclick="fun()">Change</button>
    <br><br>
    <p id="width">
        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("width")
                .style.columnWidth = "150px";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
columnWidth 是 50 是 12 是 50 是 9 是 11.1
html_dom_style_object_reference.htm
广告