<style>
.outer{
height: 300px;
width: 300px;
background-color: green;
position: relative;
}
.inner {
position: absolute;
top: 10px;
height: 0;
inset-inline:0;
background-color:red;
overflow-y: auto;
}
</style>
<div class="outer">
<div class="inner"></div>
</div>