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
Notes: sideshowbarker 2024-07-17 03:35:16 +09:00
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>