Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<style>
#flex {
display: flex;
flex-wrap: wrap;
width: 250px;
padding: 10px;
gap: 10px;
}
#flex > div {
height: 20px;
background: green;
}
</style>
<div id="flex">
<div style="width: 100px;"></div>
<div style="width: 20px;"></div>
<div style="background: none; width: 110px;"></div>
<div style="width: 40px;"></div>
<div style="width: 70px;"></div>
<div style="width: 20px;"></div>
<div style="width: 10px;"></div>
<div style="width: 250px;"></div>
<div style="width: 20px;"></div>
<div style="width: 50px;"></div>
<div style="width: 65px;"></div>
<div style="background: none; width: 85px;"></div>
<div style="width: 50px;"></div>
<div style="width: 55px;"></div>
<div style="width: 50px;"></div>
<div style="background: none; width: 65px;"></div>
<div style="width: 50px;"></div>
<div style="width: 90px;"></div>
<div style="width: 50px;"></div>
<div style="background: none; width: 30px;"></div>
<div style="width: 20px;"></div>
<div style="width: 20px;"></div>
<div style="width: 50px;"></div>
<div style="width: 50px;"></div>
<div style="background: none; width: 70px;"></div>
<div style="width: 65px;"></div>
<div style="width: 65px;"></div>
<div style="width: 50px;"></div>
<div style="width: 150px;"></div>
<div style="background: none; width: 90px;"></div>
<div style="width: 50px;"></div>
<div style="width: 50px;"></div>
</div>