summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/multicol/float-avoidance.html
blob: e20be3857817b64c115b4fbce392540d1c325deb (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
<!DOCTYPE html>
<style>
    .float {
        float: left;
        width: 200px;
        height: 100px;
        background-color: lime;
    }
    .multicol {
        width: 400px;
        -webkit-column-width: 200px;
        -webkit-column-gap: 0;
        border: 10px solid black;
        line-height: 20px;
    }
</style>
<div class="float">
</div>
<div class="multicol">
    First column<br>
    First column<br>
    First column<br>
    First column<br>
    First column<br>
    Second column<br>
    Second column<br>
    Second column<br>
    Second column<br>
    Second column<br>
</div>