25 lines
No EOL
491 B
HTML
25 lines
No EOL
491 B
HTML
<!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> |