stop click anchor when scroll css code example
Example 1: disable click css
.avoid-clicks {
pointer-events: none;
}
Example 2: css prevent background scrolling
<body scroll="no" ></body>
or css
background-attachment: fixed;
.avoid-clicks {
pointer-events: none;
}
<body scroll="no" ></body>
or css
background-attachment: fixed;