summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/flex-container-constrained-nowrap.html
blob: bf6dafec9fac70e31fbb59589d40d7d2633ffc02 (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: nowrap;
    }

    .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>