HTML - DOM Style 对象 columnRuleWidth 属性



HTML DOM Style 对象 **columnRuleWidth** 属性用于设置或获取列之间的规则宽度。

语法

设置 columnRuleWidth 属性
object.style.columnRuleWidth= "medium | thin | thick | length| initial | inherit";
获取 columnRuleWidth 属性
object.style.columnRuleWidth;

属性值

描述
thin 它指定列之间细线。
medium 这是默认值,它指定列之间中等粗细的线。
thick 它指定列之间粗线。
length 它以 CSS 测量单位(如 px)设置列之间的规则。
initial 它用于将此属性设置为其默认值。
inherit 它用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的列规则宽度属性。

HTML DOM Style 对象“columnRuleWidth”属性示例

以下示例设置了列规则宽度的不同值。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object columnRuleWidth Property
    </title>
    <style>
        #rule {
            column-count: 3;
            column-rule: 2px solid #04af2f;
        }
    </style>
</head>
<body>
    <p>Click to change the rule width.</p>
    <button onclick="fun()">Thin</button>
    <button onclick="funtwo()">Medium</button>
    <button onclick="funthree()">Thick </button>
    <button onclick="funfour()">Change Length</button>
    <p id="rule">
        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("rule")
                .style.columnRuleWidth = "thin";
        }
        function funtwo() {
            document.getElementById("rule")
                .style.columnRuleWidth = "medium";
        }
        function funthree() {
            document.getElementById("rule")
                .style.columnRuleWidth = "thick";
        }
        function funfour() {
            document.getElementById("rule")
                .style.columnRuleWidth = "10px";
        }
    </script>
</body>
</html>

支持的浏览器

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