轻松上手,快乐学习!

Style alignSelf 属性


实例

设置灵活元素内某个项目的对齐方式,以适合容器:

document.getElementById("myBlueDiv").style.alignSelf = "stretch";
亲自试一试 »

定义和用法

alignSelf 属性规定灵活容器内被选中项目的对齐方式。

注释: alignSelf 属性可重写灵活容器的 alignItems 属性。


浏览器支持

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

后跟 Webkit 的数字指定使用前缀的第一个版本。

属性
alignSelf 21.0 11.0 20.0 9.0
7.0 Webkit
12.1

语法

返回 alignSelf 属性:

object.style.alignSelf

设置 alignSelf 属性:

object.style.alignSelf = "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

技术细节

默认值: auto
返回值: 字符串,表示元素的 align-self 属性。
CSS 版本 CSS3

相关页面

CSS 参考手册: align-self 属性

HTML DOM STYLE 参考手册: alignContent 属性

HTML DOM STYLE 参考手册: alignItems 属性


❮ Style 对象