blob: bf38238b3f8b0ca5b39f97570247026d4ba1ee7b [file] [log] [blame]
<!DOCTYPE html>
<style>
#outer {
direction: rtl;
width: 200px;
height: 200px;
overflow-y: scroll;
}
#inner {
width: 100%;
height: 300px;
background: green;
}
#absolute {
width: 100px;
height: 100px;
background: blue;
position: absolute;
}
</style>
<div id="outer">
<div id="inner">
<div id="absolute"></div>
</div>
</div>