servo/tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_item-bottom-float.htm

30 lines
No EOL
553 B
HTML

<!DOCTYPE html>
<html><head><title>flexbox | GCPM bottom float</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<link href="http://www.w3.org/TR/css-flexbox-1/#flex-property" rel="help">
<link href="reference/flexbox_item-bottom-float-ref.htm" rel="match">
<style>
div {
background: black;
margin: 1em;
height: 6em;
width: 400px;
display: flex;
}
p {
background: #3366cc;
margin: 2em;
width: 2em;
height: 2em;
float: -o-bottom;
}
</style>
</head><body><div>
<p></p>
<p></p>
<p></p>
<p></p>
</div>
</body></html>