Style justifyContent 属性

Style 对象参考手册 Style 对象

实例

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

document.getElementById("main".style.justifyContent="space-between";

尝试一下 »

定义和用法

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

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


浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

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 对象