summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/block-and-inline/clearfix.html
blob: b15946a9794dd7c76912b47c47f3c5e8c4da3e10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<style>
    .clearfix {
        clear: both;
    }
    .square {
        float: left;
        width: 49px;
        height: 49px;
    }
    .white {
        background-color: salmon;
        width: 100px;
        height: 100px;
    }
    .black {
        background-color: slateblue;
    }
</style>
<div>
    <div class="square white"></div>
    <div class="clearfix"></div>
    <div class="square black"></div>
</div>