summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/flex-container-constrained-wrap.html
blob: cf8e1ebaecba60e2aa8d9b013758d3d3a1fe2a5e (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>
    body {
        font-family: 'SerenitySans';
    }

    .container {
        display: flex;
        border: 1px solid salmon;
        width: 250px;
        flex-wrap: wrap;
    }

    .box {
        width: 100px;
        height: 100px;
        border: 1px solid black;
    }
</style>
<div class="container">
    <div class="box">1</div>
    <div class="box">2</div>
    <div class="box">3</div>
</div>