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