summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/multicol/unsplittable-inline-block.html
blob: b8829b7fc598007faa5d1d5c1b067d4a2134f746 (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
<!DOCTYPE html>
<style>
    .columns {
        height: 300px;
        -webkit-column-count: 2;
        -webkit-column-gap: 0;
        column-fill: auto;
        border: 5px solid black;
        padding: 5px;
        line-height: 20px;
    }
    .inline_block {
        display: inline-block;
        border: 2px solid green;
    }
</style>
<div class="columns">
    <div style="height: 250px;"></div>
    <div class="inline_block">
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
        This should be in the second column.<br>
    </div>
</div>