1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00
serenity/Tests/LibWeb/Layout/input/table/td-valign.html
Andreas Kling 477a96820d LibWeb: Support valign attribute on td elements
This presentational hint maps to the CSS `vertical-align` property.

Fixes #19786.
2023-07-04 13:26:49 +02:00

6 lines
178 B
HTML

<!doctype html><style>
table {
height: 200px;
border: 1px solid black;
}
</style><table><td valign=top>top</td><td valign=middle>middle</td><td valign=bottom>bottom</td>