mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
32 lines
No EOL
608 B
HTML
32 lines
No EOL
608 B
HTML
<!DOCTYPE html>
|
|
<html><head><title>flexbox | singleline flexcontainer versus stf :: table</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_stf-table-singleline-ref.htm" rel="match">
|
|
<style>
|
|
#test {
|
|
background: red;
|
|
display: table;
|
|
}
|
|
div div {
|
|
background: red;
|
|
width: 0;
|
|
|
|
display: flex;
|
|
}
|
|
p {
|
|
margin: 1em 0;
|
|
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> |