mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 16:05:00 +00:00

With this change, instead of applying only the border-radius clipping from the closest containing block with hidden overflow, we now collect all boxes within the containing block chain and apply the clipping from all of them.
10 lines
182 B
HTML
10 lines
182 B
HTML
<style>
|
|
* {
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: white;
|
|
}
|
|
</style>
|
|
<img src="./images/nested-boxes-with-hidden-overflow-and-border-radius-ref.png">
|