<div id="scrolltotabs"></div>
<a href="#scrolltotabs">SCROLL</a>
When clicking on SCROLL, the screen should scroll to the respective ID. It works totally fine on Desktop, but id doesn't work on mobile. Does anyone know any fix for this?
<div id="scrolltotabs"></div>
<a href="#scrolltotabs">SCROLL</a>
When clicking on SCROLL, the screen should scroll to the respective ID. It works totally fine on Desktop, but id doesn't work on mobile. Does anyone know any fix for this?
Use this simple css so it will work perfectly.
html, body {
overflow-x: hidden;
}