Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<style>
.grid {
display: grid;
border: solid thick;
margin: 10px;
grid-template-columns: repeat(auto-fill, 50px 50px);
grid-column-gap: 100px;
width: 300px;
background: pink;
}
.grid > div {
background: lime;
width: 100%;
height: 50px;
}
</style>
<p>The test passes if it has the same visual effect as reference.</p>
<div class="grid">
<div></div>
<div></div>
<div></div>
<div></div>
</div>