我有3个项目列显示:柔性和柔性 Package :我的想法是使它的React和当我调整窗口项目从列推别人下来与他们(移动下一个项目到新行)。
现在找不到解决办法,可能是很简单的事情。
.parent{
position: relative;
width: 100%;
height: 600px;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.child{
position: relative;
width: 333px;
height: 100%;
background-color: rgb(60, 114, 96);
margin-bottom: 50px;
}
.other{
position: relative;
width: 100%;
height: 200px;
background-color: black;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="demo.css" type="text/css">
</head>
<body>
<div class="parent">
<div class="child"></div>
<div class="child"></div>
<div class="child"></div>
</div>
<div class="other"></div>
</body>
</html>
1条答案
按热度按时间omqzjyyz1#
看看这个: