有以下场景
<style>
.wrapper {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
width: 600px;
background-color: #aff;
}
.item {
width: 110px;
height: 110px;
background-color: #faa;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="item"></div></