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:
parent
af1798dd04
commit
2c16e8371f
4 changed files with 86 additions and 2 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue