servo/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1print/flexbox_stf-table-caption.xht

34 lines
No EOL
772 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 | flexcontainer versus stf :: table-caption</title>
<link href="http://opera.com" rel="author" title="Opera Software" />
<link href="http://www.w3.org/TR/css-flexbox-1/#flex-items" rel="help" />
<link href="reference/flexbox_empty-ref.xht" rel="match" />
<style>
#test {
background: red;
display: table-caption;
}
div div {
background: white;
width: 300px;
display: flex;
flex-wrap: wrap;
}
p {
color: white;
margin: 1em;
width: 200px;
}
</style>
</head><body><div id="test">
<div>
<p>damer</p>
<p>damer</p>
<p>damer</p>
<p>damer</p>
<p>damer</p>
</div>
</div>
</body></html>