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-007-lr.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Flexbox Test: gap - lr wrap vertical</title>
<link rel="author" title="Adam Argyle" href="mailto:argyle@google.com">
<link rel="match" href="gap-007-lr-ref.html">
<meta name="assert" content="The 'gap' property enables putting space exclusively between items">
<style>
body {
writing-mode: vertical-lr;
}
section {
background-color: green;
block-size: 100px;
inline-size: 200px;
display: inline-flex;
flex-direction: column;
flex-wrap: wrap;
gap: 20px;
}
section > div{
background-color: grey;
color: white;
}
</style>
<body>
<p>Test passes if there are <strong> green lines between boxes</strong>.</p>
<section>
<div>Black Panther</div>
<div>Wonder Woman</div>
<div>Storm</div>
<div>Flash</div>
</section>
</body>