blob: dedac10a36f6567f0cc08bac4b2df6871836b919 (
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
|
<!DOCTYPE html>
<html><head><title>flexbox | min-height: auto</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<style>
body {
margin: 0;
width: 602px;
}
div {
background: #3366cc;
border: 1px solid black;
}
p {
background: yellow;
margin: 1em 1em 2em;
height: auto;
min-height: auto;
}
p:last-child {
margin-bottom: 1em;
}
</style>
</head><body><div>
<p>damer</p>
<p>damer</p>
<p>damer</p>
<p>damer</p>
</div>
</body></html>
|