Newer
Older
minerva / Tests / LibWeb / Layout / input / grid / stretch-auto-tracks.html
@minerva minerva on 13 Jul 355 bytes Initial commit
<!DOCTYPE html><style>
    * {
        outline: 1px solid black;
    }
    body {
        display: grid;
    }
    section {
        display: grid;
        background: pink;
    }
    #one {
        background: green;
    }
    #two {
        height: 100px;
        background: orange;
    }
</style><body><section><div id="one"></div><div id="two"></div>