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:
parent
a75377d014
commit
477a96820d
3 changed files with 35 additions and 0 deletions
6
Tests/LibWeb/Layout/input/table/td-valign.html
Normal file
6
Tests/LibWeb/Layout/input/table/td-valign.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue