Newer
Older
minerva / Tests / LibWeb / Layout / input / grid / columns-auto-fill-with-gap-3.html
@minerva minerva on 13 Jul 309 bytes Initial commit
<!DOCTYPE html><style>
    * {
        outline: 1px solid black;
    }
    body {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(2ch, max-content));
        column-gap: 50px;
    }
    div {
        background: pink;
    }
</style><body><div>Explore</div><div>Wiki Content</div>