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 boxes should have a lime background.</title>
<style>
.box {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.box > div {
width: 100px;
height: 100px;
border: solid 1px black;
padding: 1px;
background-color: lime;
}
</style>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>