css align-self 属性定义 flex 子项单独在侧轴(纵轴)方向上的对齐方式
align-self 属性可重写灵活容器的 align-items 属性
默认值: | auto |
---|---|
继承: | 否 |
可动画化: | 否 |
版本: | CSS3 |
JavaScript 语法: | object.style.alignSelf="center" |
align-self: auto|stretch|center|flex-start|flex-end|baseline|initial|inherit;
值 | 描述 |
---|---|
auto | 默认值。元素继承了它的父容器的 align-items 属性 如果没有父容器则为 "stretch" |
stretch | 元素被拉伸以适应容器 |
center | 元素位于容器的中心 |
flex-start | 元素位于容器的开头 |
flex-end | 元素位于容器的结尾 |
baseline | 元素位于容器的基线上 |
initial | 设置该属性为它的默认值 |
inherit | 从父元素继承该属性 |
居中对齐弹性对象元素内的某个项
#myBlueDiv { align-self:center;}
下表中的数字表示支持该属性的第一个浏览器的版本号。
紧跟在 -webkit-, -ms- 或 -moz- 后的数字为支持该前缀属性的第一个版本。
属性 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
align-self | 21.0 | 11.0 | 20.0 | 9.0 7.0 -webkit- | 12.1 |