summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/flex-column-constrained-nowrap.html
blob: 54a069d5029a81cd1698b90b638d1b896a4494af (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
<style>
    body {
        font-family: 'SerenitySans';
    }

    .container {
        display: flex;
        border: 1px solid salmon;
        flex-direction: column;
        height: 250px;
        flex-wrap: nowrap;
    }

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