blob: 10e34dbd613593c1116abf91c2339af2669dfc08 (
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
|
<!DOCTYPE html>
<html><head><title>flexbox | visibility: collapse</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<style>
body {
margin: 0;
}
div {
background: #3366cc;
border: 1px solid black;
}
div::after {
content: "";
clear: both;
display: block;
}
p {
background: #ffcc00;
margin: 2em;
float: left;
}
</style>
</head><body><div>
<p>damer</p>
<p>damer</p>
</div>
</body></html>
|