CSS justify-content 属性

CSS 参考手册 CSS 参考手册


在弹性盒对象的 <div> 元素中的各项周围留有空白:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    #main {
      width: 400px;
      height: 150px;
      border: 1px solid #c3c3c3;
      display: -webkit-flex;
      /* Safari */
      -webkit-justify-content: space-around;
      /* Safari 6.1+ */
      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><b>注意:</b> Internet Explorer 10 及更早版本浏览器不支持 justify-content 属性。</p>
  <p><b>注意:</b> Safari 6.1 及更新版本通过 -webkit-justify-content 属性支持该属性。</p>

</body>
</html>

尝试一下 »


浏览器支持

表格中的数字表示支持该属性的第一个浏览器的版本号。

紧跟在 -webkit-, -ms- 或 -moz- 后的数字为支持该前缀属性的第一个版本。

属性
justify-content 29.0
21.0 -webkit-
11.0 28.0
18.0 -moz-
9.0
6.1 -webkit-
17.0

定义和用法

justify-content 用于设置或检索弹性盒子元素在主轴(横轴)方向上的对齐方式。

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

<!DOCTYPE html>
<html>
<head>
  <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>

尝试一下 »

默认值: flex-start
继承:
可动画化: 否。请参阅 可动画化(animatable)
版本: CSS3
JavaScript 语法: object.style.justifyContent="space-between" - 尝试一下 -

CSS 语法

justify-content: flex-start|flex-end|center|space-between|space-around|initial|inherit;

属性值

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

相关文章

CSS 参考手册:align-content 属性

CSS 参考手册:align-items 属性

CSS 参考手册:align-self 属性


CSS 参考手册 CSS 参考手册