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: flex-end' packs lines toward the end of the flex container." />
<style type="text/css">
#flexbox
{
background: linear-gradient(to bottom, green 0, green 50px, red 50px, red 100px);
align-content: flex-end;
display: flex;
flex-flow: wrap;
height: 100px;
width: 300px;
}
div div
{
background-color: green;
height: 26px;
width: 150px;
}
</style>
</head>
<body>
<p>Test passes if there is no red visible on the page.</p>