servo/tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_align-items-stretch-2.htm

32 lines
No EOL
616 B
HTML

<!DOCTYPE html>
<html><head><title>flexbox | align-items: stretch</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<link href="http://www.w3.org/TR/css-flexbox-1/#propdef-align-items" rel="help">
<link href="reference/flexbox_align-items-stretch-2-ref.htm" rel="match">
<style>
div {
background: black;
margin: 1em 0;
width: 30em;
height: 6em;
display: flex;
align-items: stretch;
}
span {
width: 8em;
display: inline-block;
flex: none;
}
span:nth-child(1) {
margin-top: 6em;
}
</style>
</head><body><div>
<span>PASS</span>
<span></span>
<span>x</span>
</div>
</body></html>