CSS3 對(duì)子級(jí)元素的設(shè)置 2. order
order屬性設(shè)置或檢索彈性盒模型對(duì)象的子元素出現(xiàn)的順序。
語(yǔ)法如下:
order: number|initial|inherit;
order屬性的值可以是以下幾種:
?number:默認(rèn)值是0,規(guī)定靈活項(xiàng)目的順序
?Initial:設(shè)置孩屬性為它的默認(rèn)值。
Inherit:從父元素繼承該屬性。
下面通過(guò)實(shí)例來(lái)理解order屬性。
【例題】使用order屬性
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.container{
width: 500px;
height: 500px;
border:5px red solid;
display:flex;
justify-content: space-around;
}
.content{
width: 100px;
height: 100px;
background: lightpink;
color:#fff;
font-size: 50px;
text-align: center;
line-height: 100px;
}
.c1{
order:3;
}
.c2{
background: lightblue;
order:1;
}
.c3{
background: yellowgreen;
order:4;
}
.c4{
background: coral;
order:2;
}
</style>
</head>
<body>
<div>
<div class="content c1">1</div>
<div class="content c2">2</div>
<div class="content c3">3</div>
<div class="content c4">4</div>
</div>
</body>
</html>
點(diǎn)擊加載更多評(píng)論>>