1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:27:35 +00:00

LibWeb: Support valign attribute on td elements

This presentational hint maps to the CSS `vertical-align` property.

Fixes #19786.
This commit is contained in:
Andreas Kling 2023-07-04 12:57:12 +02:00
parent a75377d014
commit 477a96820d
3 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<!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>