You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="This test checks that a multi-line flex container with 'align-content: space-between' distributes lines evenly in the flex container." />
<style type="text/css">
#flexbox
{
background: repeating-linear-gradient(to bottom, red 0, red 20px, green 20px, green 40px);
align-content: space-between;
display: flex;
flex-flow: wrap;
height: 100px;
width: 300px;
}
div div
{
background-color: green;
height: 21px;
width: 150px;
}
</style>
</head>
<body>
<p>Test passes if there is no red visible on the page.</p>