blob: b15e7fcae69e5d57109f08f6ba0f56e4ea0e69b2 [file] [log] [blame] [edit]
<!DOCTYPE html>
<link rel="author" title="CGQAQ" href="mailto:[email protected]">
<link rel="author" title="一丝" href="mailto:[email protected]">
<title>All the boxes below should have the lime background.</title>
<style>
.box {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.box > div {
width: 100px;
height: 100px;
border: solid 1px black;
background-color: lime;
}
</style>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>