servo/tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_stf-table-row-group.htm

34 lines
No EOL
640 B
HTML

<!DOCTYPE html>
<html><head><title>flexbox | flexcontainer versus stf :: table row group</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.htm" rel="match">
<style>
#test {
background: red;
display: table-row-group;
}
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>