serenity/Tests/LibWeb/Layout/input/block-and-inline/button-with-min-height.html
Tim Ledbetter 99fbd33d7d LibWeb: Make button flex wrapper inherit min-height property
This ensures that the vertical positioning of button text is correct
if a `min-height` property is present.
2024-01-28 14:48:33 +01:00

6 lines
107 B
HTML

<!DOCTYPE html><style>
button {
min-height: 100px;
}
</style><body><button>Middle-aligned text</button>