Style justifyContent 属性

Style 对象参考手册 Style 对象

在灵活的 <div> 元素的各项周围留有空白:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <style>
    #main {
      width: 400px;
      height: 150px;
      border: 1px solid #000000;
      display: flex;
      justify-content: space-around;
    }

    #main div {
      width: 70px;
      height: 70px;
    }
  </style>
</head>
<body>

  <div id="main">
    <div style="background-color:coral;"></div>
    <div style="background-color:lightblue;"></div>
    <div style="background-color:khaki;"></div>
    <div style="background-color:pink;"></div>
  </div>
  <p>点击“尝试一下”按钮,设置 justifyContent 属性的值为 "space-between"。</p>
  <button onclick="myFunction()">尝试一下</button>
  <script>
    function myFunction() {
      document.getElementById("main").style.justifyContent = "space-between";
    }
  </script>
  <p><b>注意:</b>Internet Explorer、Firefox 和 Safari 不支持 justifyContent 属性。</p>

</body>
</html>

尝试一下 »


定义和用法

justifyContent 在当灵活容器内的各项没有占用主轴上所有可用的空间时对齐容器内的各项(水平)。

提示:使用 alignContent 属性对齐交叉轴上的各项(垂直)。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Firefox、Opera 和 Chrome 支持 justify-content 属性。


语法

返回 justifyContent 属性:

object.style.justifyContent

设置 justifyContent 属性:

object.style.justifyContent = "flex-start|flex-end|center|space-between|space-around|initial|inherit"

属性值

描述
flex-start 默认值。项目位于容器的开头。
flex-end 项目位于容器的结尾。
center 项目位于容器的中心。
space-between 项目位于各行之间留有空白的容器内。
space-around 项目位于各行之前、之间、之后都留有空白的容器内。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

默认值: flex-start
返回值: 字符串,表示元素的 justify-content 属性。
CSS 版本 CSS3

相关文章

CSS 参考手册:justify-content 属性

HTML DOM STYLE 参考手册:alignContent 属性

HTML DOM STYLE 参考手册:alignItems 属性

HTML DOM STYLE 参考手册:alignSelf 属性


Style 对象参考手册 Style 对象