This survey closed on July 15, 2023. View Survey Results »

scroll-snap-type, scroll-snap-align, scroll-padding

css
.scroller {
  height: 300px;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.scroller section {
  scroll-snap-align: start;
}

css
.foo {
  height: 200px;
  overflow: auto;
  overscroll-behavior-y: contain;
}

css
.map {
  touch-action: none;
}

css
.foo {
  scroll-behavior: auto;
  scroll-behavior: smooth;
}

css
.container {
  scrollbar-gutter: stable;
}
State of CSS 2023