1
0
Fork 0
firefox/layout/reftests/async-scrolling/sticky-pos-scrollable-7-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 lines
462 B
HTML

<!DOCTYPE html>
<html>
<style>
#header {
position: fixed;
top: 0;
left: 9px;
}
#header > div {
border-radius: 10px;
overflow:hidden;
height: 100px;
width: 100px;
}
#inner {
width: 200px;
height: 200px;
background-color:green;
}
</style>
<div id="section">
<div id="header">
<div>
<div id="inner"></div>
</div>
</div>
</div>
</html>