mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
34 lines
600 B
HTML
34 lines
600 B
HTML
<!DOCTYPE html>
|
|
<title>flexbox | singleline flexcontainer versus stf :: table</title>
|
|
<link rel="author" href="http://opera.com" title="Opera Software">
|
|
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-items">
|
|
<link rel="match" href="flexbox_stf-table-singleline-ref.html">
|
|
<style>
|
|
#test {
|
|
background: blue;
|
|
display: table;
|
|
}
|
|
div div {
|
|
background: red;
|
|
width: 0;
|
|
|
|
display: flex;
|
|
}
|
|
p {
|
|
margin: 1em 0;
|
|
width: 200px;
|
|
}
|
|
p:last-child {
|
|
margin-right: 200em;
|
|
}
|
|
</style>
|
|
|
|
<div id="test">
|
|
<div>
|
|
<p>damer</p>
|
|
<p>damer</p>
|
|
<p>damer</p>
|
|
<p>damer</p>
|
|
<p>damer</p>
|
|
</div>
|
|
</div>
|