mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
34 lines
No EOL
770 B
HTML
34 lines
No EOL
770 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 :: inline-block</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: inline-block;
|
|
}
|
|
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> |