mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
32 lines
No EOL
753 B
HTML
32 lines
No EOL
753 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><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.xht" 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> |