Код: Выделить всё
section {
width: 100vw;
height: 100vh;
display: flex;
overflow-y: scroll;
justify-content: center;
align-items: center;
flex-direction: column;
}
Чтобы быть более конкретным, в следующем HTML:
Код: Выделить всё
Hi im div 1!
Hi im div 2!
Hi im div 3!
Код: Выделить всё
body{
width: 100vw;
height: 100vh;
overflow-x: hidden;
overflow-y: scroll;
scroll-behavior: smooth;
}
#root{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#one, #two{
height : 100%;
}
Подробнее здесь: https://stackoverflow.com/questions/709 ... ner-scroll
Мобильная версия