mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
This ensures that the vertical positioning of button text is correct if a `min-height` property is present.
7 lines
107 B
HTML
7 lines
107 B
HTML
<!DOCTYPE html><style>
|
|
button {
|
|
min-height: 100px;
|
|
}
|
|
</style><body><button>Middle-aligned text</button>
|
|
|