blob: 0e0341c3a073095fe48528d6ea1329f29f253d97 (
plain)
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
35
36
37
38
39
|
<html>
<head>
<style>
div.a {
column-count: 2;
position: absolute;
background: lightblue;
}
div.b {}
div.c {
float: left;
height: 23px;
width: 10px;
background: orange;
}
div.d {
float: left;
height: 22px;
width: 10px;
background: green;
}
div.e {
clear: left;
}
</style>
</head>
<body
><div class="a"
><div class="b"
><div class="c"
></div
><div class="d"
></div
><div class="e"
></div
> <!-- whitespace --></div
></div
></body>
</html>
|