Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<link rel="author" title="CGQAQ" href="mailto:m.jason.liu@gmail.com">
<link rel="author" title="一丝" href="mailto:yiorsi@gmail.com">
<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>