HTML - DOM Style 对象 justifyContent 属性



HTML DOM Style 对象 **justifyContent** 属性设置或返回弹性项目在主轴或水平方向上的对齐方式,当它们没有使用所有可用空间时。

语法

设置 justifyContent 属性
object.style.justifyContent= "flex-start | flex-end | center | space-between | space-around | initial | inherit";
获取 justifyContent 属性
object.style.justifyContent;

属性值

描述
flex-start 这是默认值,它将弹性项目对齐到容器的开头。
flex-end 它将弹性项目对齐到容器的末尾。
center 它将弹性项目对齐到容器的中心。
space-between 它在行之间放置弹性项目。
space-around 它在行之前、之间和之后放置弹性项目。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

HTML DOM Style 对象“justifyContent”属性的示例

以下示例说明了应用于 div 元素的 justifyContent 属性,该元素具有五个不同颜色的项目。

将弹性项目设置为“flex-start”和“flex-end”

在此示例中,我们将弹性容器的项目对齐到 flex-start、flex-end 和 center。

<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        #flex {
            width: 700px;
            height: 300px;
            border: 1px solid black;
            display: flex;
        }
        #flex div {
            height: 80px;
            width: 80px;
        }
    </style>
    <title>
        HTML DOM Style Object justifyContent Property
    </title>
</head>
<body>
    <p>
        Click to try different justifyContent property.
    </p>
    <button onclick="funTwo()">Flex-End</button>
    <button onclick="fun()">Flex-Start</button>
    <button onclick="funThree()">Center</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 funTwo() {
            document.getElementById("flex")
                .style.justifyContent = "flex-end";
        }
        function fun() {
            document.getElementById("flex")
                .style.justifyContent = "flex-start";
        }
        function funThree() {
            document.getElementById("flex")
                .style.justifyContent = "center";
        }
    </script>
</body>
</html>

将弹性项目设置为“space-between”和“space-around”

在此示例中,我们将弹性容器的项目对齐到 space-between 和 space-around。

<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        #flex {
            width: 700px;
            height: 300px;
            border: 1px solid black;
            display: flex;
        }
        #flex div {
            height: 80px;
            width: 80px;
        }
    </style>
    <title>
        HTML DOM Style Object justifyContent Property
    </title>
</head>
<body>
    <p>
        Click to try different justifyContent property.
    </p>
    <button onclick="funTwo()">Space-Between</button>
    <button onclick="fun()">Space-Around</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 funTwo() {
            document.getElementById("flex")
                .style.justifyContent = "space-between";
        }
        function fun() {
            document.getElementById("flex")
                .style.justifyContent = "space-around";
        }
    </script>
</body>
</html>

支持的浏览器

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