HTML - DOM Style 对象 columnGap 属性



HTML DOM Style 对象 **columnGap** 属性用于指定列之间的间隙。

语法

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

属性值

描述
length 它以长度单位设置间隙。
normal 这是默认值,为多列布局指定列之间 1em 的间隙。
initial 它用于将此属性设置为其默认值。
inherit 它用于继承其父元素的属性。

返回值

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

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

以下示例将列间距设置为 45px。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object columnGap Property
    </title>
    <style>
        #gap {
            column-count: 3;
        }
    </style>
</head>
<body>
    <p>Click to change the gap distance.</p>
    <button onclick="fun()">Change</button>
    <p id="gap">
        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("gap")
                .style.columnGap = "45px";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
columnGap 是 1 是 12 是 1.5 是 3 是 11.1
html_dom_style_object_reference.htm
广告