summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/flex-column-height-constrained.html
blob: 1664939c2d3ca4e7375652f1c652995a2adc164c (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;
        flex-direction: column;
        height: 250px;
    }

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