ladybird/Tests/LibWeb/Layout/input/block-and-inline/button-width.html

9 lines
240 B
HTML
Raw Normal View History

<!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>