Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-align/gaps/gap-normal-used-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Box Alignment Test: used value of *-gap:normal on flexbox</title>
<meta assert="The used value row-gap:normal and column:normal normal is 0px in flexbox">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht" />
<style>
#flex {
colum-gap: normal;
row-gap: normal;
display: flex;
flex-flow: wrap;
max-width: 145px; /* more than 100, less than 150, to force wrapping and get 2 items per line*/
position: absolute;
}
#flex * {
width: 50px;
height: 50px;
background: green
}
#red {
width: 100px;
height: 100px;
background: red;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id=flex><span></span><span></span><span></span><span></span></div>
<div id=red></div>