Newer
Older
minerva / Tests / LibWeb / Layout / input / grid / row-1fr.html
@minerva minerva on 13 Jul 293 bytes Initial commit
<!doctype html><style>
    * {
        border: 1px solid black;
    }
    body {
        display: grid;
        grid-template-rows: 1fr;
        width: 200px;
    }
    .item {
        width: 100px;
        height: 50px;
        background: orange;
    }
</style><body><div class="item"></div>