mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
This can happen if pseudo elements are absolutely positioned, they need the nearest non-inline parent to determine their position.
15 lines
234 B
HTML
15 lines
234 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
span::after {
|
|
background: green;
|
|
content: "baz";
|
|
display: block;
|
|
height: 50px;
|
|
position: absolute;
|
|
width: 50px;
|
|
}
|
|
</style>
|
|
<span>foobar</span>
|
|
<div>lorem ipsum</div>
|
|
<span>foobar</span>
|