1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:18:12 +00:00

LibWeb: Add naive support for {margin,padding}-{block,inline}

Like other logical properties, we just alias these to the LTR TB default
properties for now.
This commit is contained in:
Andreas Kling 2023-06-07 09:13:21 +02:00
parent af1798dd04
commit 2c16e8371f
4 changed files with 86 additions and 2 deletions

View file

@ -0,0 +1,18 @@
<!doctype html><style>
* {
border: 1px solid black;
}
body {
width: 500px;
}
.a {
padding: 100px;
padding-block: 10px;
padding-inline: 20px;
}
.b {
margin: 90px;
margin-block: 30px;
margin-inline: 40px;
}
</style><div class="a"><div class="b"><span>Hello</span>