summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/inline-box-with-vertical-margins.html
blob: 5d979073686a1c819d480966fafce66e1ac77dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<style>
    body {
        font-family: 'SerenitySans';
    }

    #inline-box {
        background-color: red;
        margin-top: 50px;
        margin-bottom: 25px;
        width: 100px;
        height: 100px;

        display: inline-block;
    }
</style>Well, <div id="inline-box"></div> friends.