CSS3 對(duì)父級(jí)容器的設(shè)置 1.flex-direction
flex-direction屬性規(guī)定靈活項(xiàng)目的方向,CSS語(yǔ)法如下:
flex-direction: row|row-reverse|column|column-reverse|initial|inherit:
flex-direction屬性的值可以是以下幾種:
?row:默認(rèn)值,靈活的項(xiàng)目將水平顯示,正如一個(gè)行一樣。
?row-reverse:與row相同,但是以相反的順序。
?column:靈活的項(xiàng)目將垂直顯示,正如一個(gè)列一樣。
?column-reverse:與column相同,但是以相反的順序。
?initial:設(shè)置該屬性為它的默認(rèn)值。
?inherit:從父元素繼承該屬性。
通過(guò)實(shí)例來(lái)理解此屬性。
【例題】使用flex-direction屬性
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.container{
width: 1200px;
/*height: 200px;*/
border:5px red solid;
display:flex;
flex-direction: row-reverse;
flex-direction: column-reverse;
}
.content{
width: 100px;
height: 100px;
background: lightpink;
color:#fff;
font-size: 50px;
text-align: center;
line-height: 100px;
}
</style>
</head>
<body>
<div>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
</body>
</html>
點(diǎn)擊加載更多評(píng)論>>