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