mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
34 lines
No EOL
617 B
HTML
34 lines
No EOL
617 B
HTML
<!DOCTYPE html>
|
|
<html><head><title>flexbox | flexcontainer versus stf :: float</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;
|
|
float: left;
|
|
}
|
|
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> |