См. здесь: строка между заголовком и разделом в области прокрутки должна быть скрытым

Код: Выделить всё
html, body {
overflow: hidden;
}
.view {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 40px;
background-color: #EEE;
overflow-y: scroll;
height: 400px;
padding: 10px;
}
.stick-header {
position: sticky;
top: 0px;
background-color: #CCC;
border-radius: 4px;
height: 20px;
padding: 10px;
}
.stick-section {
position: sticky;
top: 60px;
background-color: #333;
color: white;
border-radius: 10px;
height: 20px;
padding: 10px;
}
.row {
background-color: green;
padding: 10px;
}Код: Выделить всё
Row Content before Header
Header
Section
Row Content
Row Content
Row Content
Row Content
Row Content
Section
Row Content
Row Content
Row Content
Row Content
Row Content
Section
Row Content
Row Content
Row Content
Row Content
Row Content
Row Content
Row Content
Section
Row Content
Row Content
Row Content
Row Content
Row Content
Row Content
Row Content
Row Content
Row Content
Section
Row Content
Row Content
Row Content
Row Content
Row ContentПодробнее здесь: https://stackoverflow.com/questions/787 ... ion-sticky
Мобильная версия