Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<title>Fieldset anonymous content box inherits gap (reference)</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#anonymous-fieldset-content-box">
<style>
.container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
width: 200px;
margin: 0;
}
.item {
height: 50px;
background: blue;
}
</style>
<p>There should be a 2-column grid with gaps between items below.</p>
<div class="container">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>