我试着按列排序它在“flex:row wrap”下很好用,但“flex-flow:column wrap”不起作用。 我还尝试了“flex-direction:column和flex-wrap:wrap”
我在我的代码中找不到任何错误,请帮助。
null
* {
font-size: 0px;
margin: 0;
padding: 0;
}
.wrap {
display: flex;
flex-flow: column wrap;
width: 90%;
height: 500px;
margin: 3% auto;
padding: 0;
background-color: white;
}
.wrap div {
color: yellow;
width: 33.333333333333%;
}
.wrap div:first-child {
background-color: blue;
}
.wrap div:nth-child(2) {
background-color: blueviolet;
}
.wrap div:last-child {
background-color: crimson;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<div class="wrap">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
null
我找到你想要的了。 您需要对每个项使用flex-grow
,以便它们增长以占用容器的所有空间。
null
* {
font-size: 0px;
margin: 0;
padding: 0;
}
.wrap {
display: flex;
flex-flow: column wrap;
width: 90%;
height: 500px;
margin: 3% auto;
padding: 0;
background-color: white;
}
.wrap div {
color: yellow;
width: 33.333333333333%;
flex-grow: 1;
}
.wrap div:first-child {
background-color: blue;
}
.wrap div:nth-child(2) {
background-color: blueviolet;
}
.wrap div:last-child {
background-color: crimson;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<div class="wrap">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>