HTML - DOM Style 对象 flexBasis 属性



HTML DOM Style 对象 **flexBasis** 属性设置或返回弹性项目的初始长度。flexBasis 属性优先级高于 width,除非 flexBasis 设置为 auto。

语法

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

属性值

描述
数字 它指定弹性项目的初始长度。
auto 这是默认值,它根据弹性项目的长度指定长度。如果未指定项目的长度,则长度将根据内容确定。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

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

以下示例为名为 Random 的 div 元素设置 flexBasis 属性。

<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        #flex {
            width: 500px;
            height: 60px;
            border: 1px solid black;
            display: flex;
        }
        #flex div{
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 40px;
        }
    </style>
    <title>
        HTML DOM Style Object flexBasis Property
    </title>
</head>
<body>
    <p>Click to apply flexBasis property.</p>
    <button onclick="fun()">Apply</button>
    <br>
    <br>
    <div id="flex">
        <div style="background-color: #04af2f;">Hello</div>
        <div style="background-color: aqua;" id="id1">Random</div>
        <div style="background-color: yellow;">Text</div>
    </div>
    <script>
        function fun() {
            document.getElementById("id1")
                .style.flexBasis="100px"
        }
    </script>
</body>
</html>

支持的浏览器

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