CSS3 對父級容器的設置 4.flex-wrap
flex-wrap屬性規(guī)定flex容器是單行或者多行,同時橫軸的方向決定了新行堆疊的方向。
語法如下:
flex-wrap: nowrap|wrap|wrap-reverse|initial|inherit:
flex-wrap屬性的值可以是以下幾種:
?nowrap:默認,彈性容器為單行,該情況下彈性子頂可能會溢出容器。
?wrap:彈性容器為多行,該情況下彈性子項溢出的部分會被放置到新行,子項內(nèi)部會發(fā)生斷行。
?wrap-reverse:反車專wrap排列。
? initial:設置該屬性為它的默認值。 o inherit:從父元素繼承該屬性。
下面通過實例來理解flex~wrap屬性。
【例題】使用flex-wrap屬性
代碼如下:
<!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;
flex-wrap: wrap;
}
.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>6</div>
<div>7</div>
<div>8</div>
<div>9</div>
<div>10</div>
</div>
</body>
</html>
點擊加載更多評論>>