mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
99fbd33d7d
This ensures that the vertical positioning of button text is correct if a `min-height` property is present.
6 lines
107 B
HTML
6 lines
107 B
HTML
<!DOCTYPE html><style>
|
|
button {
|
|
min-height: 100px;
|
|
}
|
|
</style><body><button>Middle-aligned text</button>
|
|
|