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 the flex container with 'align-items: stretch' places each flex item's margin box so that its cross size is the same as the cross size of the line." />
<style type="text/css">
#flexbox
{
background: red;
align-items: center;
align-items: stretch;
display: flex;
height: 100px;
width: 300px;
}
div div
{
background-color: green;
width: 150px;
}
</style>
</head>
<body>
<p>Test passes if there is no red visible on the page.</p>