Newer
Older
minerva / Tests / LibWeb / Layout / input / grid / container-max-width-max-content.html
@minerva minerva on 13 Jul 254 bytes Initial commit
<!DOCTYPE html>
<style>
    .grid {
        display: grid;
        max-width: max-content;
    }

    .item {
        background-color: magenta;
        width: 100px;
        height: 100px;
    }
</style>
<div class="grid"><div class="item"></div></div>