Avoid Using "background-attachment: fixed" with background-image:(url("./assests/bg.png")) without fallback or will get bug in mobile first Design...
. hero {
background-image: url('banner.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 100vh;
}
Doesn't always work on mobile browsers (especially iOS Safari)
Some devices disable it by default for ...
devwithkunal.hashnode.dev1 min read