HTML - DOM Style 对象 alignContent 属性



HTML DOM Style 对象的 **alignContent** 属性用于在弹性容器的项目未占用所有可用空间时,在横轴或纵轴上对齐这些项目。

语法

以下是获取或设置 alignContent 属性的语法。

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

属性值

此属性接受以下列出的值。

描述
stretch 这是默认的属性值。它将项目拉伸以适应容器。
center 它将项目定位到容器的中心。
flex-start 它将项目定位到容器的开头。
flex-end 它将项目定位到容器的结尾。
space-between 它在行之间放置项目并留出空间。
space-around 它在行之前、之间和之后放置项目并留出空间。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

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

以下示例说明了该属性的不同值。

将值设置为 stretch 和 center

在此示例中,我们将 alignContent 值设置为 **stretch** 和 **center**。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>HTML DOM Style Object alignContent Property</title>
    <style>
        #align {
            width: 300px;
            height: 300px;
            border: 1px solid #000000;
            display: flex;
            flex-flow: row wrap;
            align-content: space-around;
        }
        #align div {
            width: 300px;
            height: 70px;
        }
    </style>
</head>
<body>
    <div id="align">
        <div style="background-color:rgb(158, 225, 118);"></div>
        <div style="background-color:rgb(119, 205, 234);"></div>
        <div style="background-color:rgb(211, 145, 219);"></div>
    </div>
    <p>Click button to change property.</p>
    <p id="id"></p>
    <button onclick="fun()">stretch</button>
    <button onclick="funtwo()">center</button>
    <script>
        function fun() {
            document.getElementById("align").style.alignContent = "stretch";
        }
        function funtwo() {
            document.getElementById("align").style.alignContent = "center";
        }
    </script>
</body>
</html>

将值设置为 flex-start 和 flex-end

在此示例中,我们将 alignContent 值设置为 **flex-start** 和 **flex-end**。

<!DOCTYPE html>
<html>
<head>
    <title>HTML DOM Style Object alignContent Property</title>
    <style>
        #align {
            width: 300px;
            height: 300px;
            border: 1px solid #000000;
            display: flex;
            flex-flow: row wrap;
            align-content: space-around;
        }
        #align div {
            width: 300px;
            height: 70px;
        }
    </style>
</head>
<body>
    <div id="align">
        <div style="background-color:rgb(158, 225, 118);"></div>
        <div style="background-color:rgb(119, 205, 234);"></div>
        <div style="background-color:rgb(211, 145, 219);"></div>
    </div>
    <p>Click button to change property.</p>
    <p id="id"></p>
    <button onclick="fun()">flex-start</button>
    <button onclick="funtwo()">flex-end</button>
    <script>
        function fun() {
            document.getElementById("align").style.alignContent = "flex-start";
        }
        function funtwo() {
            document.getElementById("align").style.alignContent = "flex-end";
        }
    </script>
</body>
</html>

将值设置为“space-between”和“space-around”

在此示例中,我们将 alignContent 值设置为 **space-between** 和 **space-around**。

<!DOCTYPE html>
<html>
<head>
    <title>HTML DOM Style Object alignContent Property</title>
    <style>
        #align {
            width: 300px;
            height: 400px;
            border: 1px solid #000000;
            display: flex;
            flex-flow: row wrap;
        }
        #align div {
            width: 300px;
            height: 70px;
        }
    </style>
</head>
<body>
    <div id="align">
        <div style="background-color:rgb(158, 225, 118);"></div>
        <div style="background-color:rgb(119, 205, 234);"></div>
        <div style="background-color:rgb(211, 145, 219);"></div>
    </div>
    <p>Click button to change property.</p>
    <p id="id"></p>
    <button onclick="fun()">Space Between</button>
    <button onclick="funtwo()">space-around</button>
    <script>
        function fun() {
            document.getElementById("align").style.alignContent = "space-between";
        }
        function funtwo() {
            document.getElementById("align").style.alignContent = "space-around";
        }
    </script>
</body>
</html>

支持的浏览器

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