mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
24 lines
412 B
HTML
24 lines
412 B
HTML
![]() |
<!doctype html>
|
||
|
<link rel="match" href="reference/overflow-hidden-3-ref.html" />
|
||
|
<style>
|
||
|
body {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
}
|
||
|
#outer {
|
||
|
width: 200px;
|
||
|
height: 100px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
#inner {
|
||
|
position: relative;
|
||
|
z-index: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
#green {
|
||
|
width: 200px;
|
||
|
height: 200px;
|
||
|
background: green;
|
||
|
}
|
||
|
</style><body><div id="outer"><div id="inner"><div id="green">
|