Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/gap-001-ltr.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Flexbox Test: gap - horizontal</title>
<link rel="author" title="Adam Argyle" href="mailto:argyle@google.com">
<link rel="match" href="gap-001-ltr-ref.html">
<meta name="assert" content="The 'gap' property enables putting space exclusively between items">
<style>
section {
background-color: green;
block-size: 100px;
display: flex;
gap: 20px;
}
section > div{
background-color: grey;
flex: 1 1 auto;
}
</style>
<body>
<p>Test passes if there is <strong>a green vertical line between boxes</strong>.</p>
<section>
<div></div>
<div></div>
<div></div>
</section>
</body>