How to prevent overscroll bounce?
18:53 20 May 2023

I have a basic React Tailwind page:

export default function Home() {
  return (
    

Title

body

) }

The entire page is black but when I scroll down it pulls the top of the page down (overscroll) revealing a white strip at the top.

enter image description here

How can I prevent this? I have tried overscroll-none

css tailwind-css overscroll