HTML - DOM Style 对象 flexFlow 属性



HTML DOM Style 对象的 **flexFlow** 属性是 **flexDirection** 和 **flexWrap** 的简写属性,其中 flexDirection 指定弹性项目的排列方向,flexWrap 指定弹性项目是否换行。

语法

设置 flexFlow 属性
object.style.flexFlow= "flex-direction | flex-wrap | initial | inherit";
获取 flexFlow 属性
object.style.flexFlow;

属性值

描述
flex-direction 指定弹性项目的排列方向。其默认值为 row。
flex-wrap 指定弹性项目是否换行。其默认值为 nowrap。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

HTML DOM Style 对象 'flexFlow' 属性的示例

以下示例说明了 flexFlow 属性值。

将 flexflow 值设置为 'column nowrap' 和 'column wrap'

以下示例将弹性项目设置为 column nowrap,即 flex direction 为 column 且不换行,以及 column wrap,即 flex direction 为 column 且换行。

<!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 flexFlow Property
    </title>
</head>
<body>
    <p>Click to apply flexFlow property.</p>
    <button onclick="fun()">Column with NoWrap</button>
    <button onclick="funTwo()">Column with Wrap</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.flexFlow = "column nowrap"
        }
        function funTwo() {
            document.getElementById("flex")
                .style.flexFlow = "column wrap"
        }
    </script>
</body>
</html>

将 flexflow 值设置为 'row wrap' 和 'row wrap-reverse'

以下示例将弹性项目设置为 row wrap,即 flex direction 为 row 且换行,以及 row wrap-reverse,即 flex direction 为 row 且反向换行。

<!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 flexFlow Property
    </title>
</head>
<body>
    <p>Click to apply flexFlow property.</p>
    <button onclick="fun()">Row with Wrap</button>
    <button onclick="funTwo()">Row with 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.flexFlow = "row wrap"
        }
        function funTwo() {
            document.getElementById("flex")
                .style.flexFlow = "row wrap-reverse"
        }
    </script>
</body>
</html>

支持的浏览器

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