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
<metaname="assert" content="In a column flexbox, the height of a fully inflexible item with fixed flex-basis is definite, and percent children resolve against the flex basis, not the specified height." />
<style>
x-flexbox {
display: flex;
flex-direction: column;
}
x-item {
height:0px;
flex:00100px;
}
x-item>div {
width:100px;
height:100%;
background: green;
}
#reference-overlapped-red {
position: absolute;
background-color: red;
width:100px;
height:100px;
z-index:-1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>