mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:57:44 +00:00
LibWeb: Support align
attribute on table
elements
This commit is contained in:
parent
7a766bdb83
commit
a54e62bea0
5 changed files with 70 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
<!doctype html><style>
|
||||
table {
|
||||
height: 200px;
|
||||
border: 1px solid black;
|
||||
margin: 100px;
|
||||
}
|
||||
</style><table align="center"><td>off-center</td>
|
6
Tests/LibWeb/Layout/input/table/table-align-center.html
Normal file
6
Tests/LibWeb/Layout/input/table/table-align-center.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
<!doctype html><style>
|
||||
table {
|
||||
height: 200px;
|
||||
border: 1px solid black;
|
||||
}
|
||||
</style><table align="center"><td>center</td>
|
Loading…
Add table
Add a link
Reference in a new issue