summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/bfc-float-left-break-vertically.html
blob: 064d8cc2da851b07f63a6e867cb4667f9e9d25fd (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
40
41
42
43
44
<!DOCTYPE html>
<html>
    <head>
        <style>
            * {
                border: 1px solid black !important;
                margin: 0;
                padding: 0;
            }

            body {
                width: 400px;
            }

            .yellow {
                width: 60px;
                height: 50px;
                float: left;
                background: yellow;
            }

            .orange {
                width: 250px;
                height: 50px;
                float: left;
                background: orange;
            }

            .green {
                background: lime;
                width: 100px;
                height: 50px;
                float: left;
            }
        </style>
    </head>
    <body>
        <div class="ul">
            <div class="yellow"></div>
            <div class="orange"></div>
        </div>
        <div class="green"></div>
    </body>
</html>