ladybird/Tests/LibWeb/Ref/expected/scrollable-box-with-nested-stacking-context-ref.html

34 lines
574 B
HTML
Raw Normal View History

2025-03-18 19:29:54 +01:00
<!DOCTYPE html>
<style>
* {
scrollbar-width: none;
}
#container {
width: 300px;
height: 500px;
overflow: auto;
position: relative;
border: 2px solid black;
}
.content {
background-color: lightblue;
height: 100%;
}
.box {
background-color: magenta;
width: 100px;
height: 50px;
position: absolute;
top: 0px;
right: 50px;
}
</style>
<div id="container">
<div class="content">
<div class="box"></div>
</div>
</div>