Есть у меня блок, а в нем контент. Мне надо сделать так, что-бы когда скролили блок, контент (весь), опускался вниз. Сейчас контент уходит наверх.
https://codepen.io/anon/pen/eKGybY<div class="div-cont">
<p style="height:250%;">
By using overflow-y, we can create scroll bars when the contents of this div are bigger/higher than the container. Also, by setting this paragraph to 250 percent, it is automatically 250 percent higher than the parent container - forcing an overflow.
</p>
</div>
.div-cont{
border:1px solid black;
width:150px;
height:100vh;
overflow:scroll;
overflow-y:scroll;
overflow-x:hidden;
}