HTML DOM Style order 属性返回并修改柔性项目相对于 HTML 文档中同一容器内其余柔性项目的顺序。
用法
以下是语法 -
1.返回单
object.order
2.修改订单
object.order = “value”
在这里,价值可以是 -
值 | 解释 |
---|---|
initial | 它将此属性值设置为其默认值。 |
inherit | 它从其父元素继承此属性值。 |
number | 它表示指定灵活项目顺序的数字。 |
让我们看一个 HTML DOM 样式顺序属性的例子 -
示例
<!DOCTYPE html>
<html>
<style>
body {
color:#000;
height:100vh;
background-color:#8BC6EC;
background-image:linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
}
.btn {
background:#db133a;
border:none;
height:2rem;
border-radius:2px;
width:40%;
display:block;
color:#fff;
outline:none;
cursor:pointer;
margin:1rem auto;
}
.container {
border:3px solid #fff;
margin:1rem auto;
display:flex;
padding:2rem;
}
.box {
width:100px;
height:100px;
}
</style>
<body>
<h1 style="text-align:center">DOM Style order Property Demo</h1>
<div class="container">
<div class="box" id="b1" style="background-color:#7F055F;"></div>
<div class="box" id="b2" style="background-color:#3A015C;"></div>
<div class="box" id="b3" style="background-color:#177E89;"></div>
</div>
<button onclick="set()" class="btn">Change order</button>
<script>
function set() {
document.querySelector('#b1').style.order = "3";
document.querySelector('#b2').style.order = "2";
document.querySelector('#b3').style.order = "1";
}
</script>
</body>
</html>
输出
点击 ”Change order” 按钮来更改内部灵活项目的顺序white 边境集装箱。
相关用法
- HTML DOM Style overflowY属性用法及代码示例
- HTML DOM Style outlineOffset属性用法及代码示例
- HTML DOM Style outlineColor属性用法及代码示例
- HTML DOM Style opacity属性用法及代码示例
- HTML DOM Style outline属性用法及代码示例
- HTML DOM Style outlineStyle属性用法及代码示例
- HTML DOM Style outlineWidth属性用法及代码示例
- HTML DOM Style overflowX属性用法及代码示例
- HTML DOM Style objectFit属性用法及代码示例
- HTML DOM Style overflow属性用法及代码示例
- HTML DOM Style objectPosition属性用法及代码示例
- HTML DOM Style pageBreakAfter属性用法及代码示例
- HTML DOM Style transition属性用法及代码示例
- HTML DOM Style maxWidth属性用法及代码示例
- HTML DOM Style textAlignLast属性用法及代码示例
- HTML DOM Style borderBottomWidth属性用法及代码示例
- HTML DOM Style width属性用法及代码示例
- HTML DOM Style margin属性用法及代码示例
- HTML DOM Style textDecoration属性用法及代码示例
- HTML DOM Style borderCollapse属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style order Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。