小码哥的IT人生

Style alignSelf 属性 详解

css3基础 2023-07-29 18:10:21小码哥的IT人生shichen

Style alignSelf 属性

定义和用法

alignSelf 属性规定弹性容器内选定项的对齐方式。

注释:alignSelf 属性会覆盖弹性容器的 alignItems 属性

实例

为弹性元素内的其中一项设置对齐方式,以适应容器:

document.getElementById("myBlueDiv").style.alignSelf = "stretch";

 

完整实例【亲自试一试】:

<!DOCTYPE html>
<html>
<head>
<style>
#main {
  width: 220px;
  height: 300px;
  border: 1px solid black;
  display: flex;
  align-items: flex-start;
}
#main div {
  flex: 1;
}
#myBlueDiv {
  align-self: center;
}
</style>
</head>
<body>
<h1>HTML Style 对象</h1>
<h2>alignSelf 属性</h2>
<div id="main">
  <div style="background-color:coral;">红色</div>
  <div style="background-color:lightblue;" id="myBlueDiv">蓝色</div>
  <div style="background-color:lightgreen;">有更多内容的绿色 DIV。</div>
</div>
<p>单击按钮将 alignSelf 属性的值设置为“stretch”。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
  document.getElementById("myBlueDiv").style.alignSelf = "stretch";
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

语法

返回 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

浏览器支持

alignItems 是 CSS3 (1999) 特性。

所有浏览器都完全支持它:

Chrome Edge Firefox Safari Opera IE
Chrome Edge Firefox Safari Opera IE
支持 支持 支持 支持 支持 11

相关页面

CSS 参考手册:align-self 属性

HTML DOM STYLE 参考手册:alignContent 属性

HTML DOM STYLE 参考手册:alignItems 属性

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024