I need to set margin-top < 100 or 200px and be able to scroll up till the first and last eight element.
If I set margin-top: -200px; I will not be able to scroll up until the top.
ul {
margin-top: -50px;
overflow-y: hidden;
margin-top: -200px;
}
.container {
height: 50px;
overflow-y: scroll;
}
<div class="container">
<ul>
<li>first</li>
<li>second</li>
<li>third</li>
<li>fourth</li>
<li>fifth</li>
<li>sixth</li>
<li>eight</li>
<li>eight</li>
<li>eight</li>
<li>eight</li>
<li>eight</li>
<li>eight</li>
</ul>
</div>