HTML - DOM样式对象flexWrap属性



HTML DOM 样式对象 **flexWrap** 属性指定弹性项目是否应该换行。

语法

设置 flexWrap 属性
object.style.flexWrap= "nowrap | wrap | wrap-reverse | initial | inherit";
获取 flexWrap 属性
object.style.flexWrap;

属性值

描述
nowrap 这是默认值,指定弹性项目不会换行。
wrap 指定弹性项目在需要时会换行。
wrap-reverse 指定弹性项目在需要时会反向换行。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

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

以下示例演示了“wrap”、“nowrap”和“wrap-reverse”属性值。

<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        #flex {
            width: 300px;
            height: 300px;
            border: 1px solid black;
            display: flex;
        }
        #flex div {
            height: 80px;
            width: 80px;
        }
    </style>
    <title>
        HTML DOM Style Object flexWrap Property
    </title>
</head>
<body>
    <p>Click to apply flexWrap property.</p>
    <button onclick="fun()">Wrap</button>
    <button onclick="funTwo()">No Wrap</button>
    <button onclick="funThree()">Wrap-Reverse</button>
    <br>
    <br>
    <div id="flex">
        <div style="background-color: #04af2f;">1</div>
        <div style="background-color: aqua;">2</div>
        <div style="background-color: yellow;">3</div>
        <div style="background-color: whitesmoke">4</div>
        <div style="background-color: black;">5</div>
    </div>
    <script>
        function fun() {
            document.getElementById("flex")
                .style.flexWrap = "wrap"
        }
        function funTwo() {
            document.getElementById("flex")
                .style.flexWrap = "nowrap"
        }
        function funThree() {
            document.getElementById("flex")
                .style.flexWrap = "wrap-reverse"
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
flexWrap 是 29 是 12 是 28 是 9 是 16
html_dom_style_object_reference.htm
广告