mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 18:30:27 +00:00
11 lines
No EOL
237 B
HTML
11 lines
No EOL
237 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.outer-grid {
|
|
display: grid;
|
|
}
|
|
.inner-absolute-block {
|
|
display: block;
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
<div class="outer-grid"><div class="inner-absolute-block">some text</div><div>more text</div></div> |