blob: 1cffa8a31fe031c54862573fce9fa30c1512975c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<!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>
|