Newer
Older
minerva / Tests / LibWeb / Layout / input / block-and-inline / button-width.html
@minerva minerva on 13 Jul 240 bytes Initial commit
<!DOCTYPE html><style>
    .btn {
        display: block;
    }

    .fixed-width {
        width: 200px;
    }
</style><button class="btn fixed-width">200px width</button><button class="btn">auto width should behave as fit-content</button>