Style justifyContent 属性
Style 对象的 justifyContent 在当灵活容器内的各项没有占用主轴上所有可用的空间时对齐容器内的各项 ( 水平 )
使用 alignContent 属性对齐交叉轴上的各项 ( 垂直 )
语法
返回 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 |
返回值
字符串,表示元素的 justify-content 属性
浏览器支持
Firefox、Opera 和 Chrome 支持 justify-content 属性
范例
在灵活的 <div> 元素的各项周围留有空白
document.getElementById("main".style.justifyContent="space-between");
相关知识
CSS 参考手册: justify-content 属性
HTML DOM STYLE 参考手册: alignContent 属性
HTML DOM STYLE 参考手册: alignItems 属性
HTML DOM STYLE 参考手册: alignSelf 属性