Struggling to achieve smooth scrolling across different browsers? Despite trying various methods, nothing seems to be effective. Here is my current body styling:
body {
color: #4A4A4A;
background-color: #191E25;
font-family: 'arial'; arial, sans-serif;
font-size: 1em;
line-height: 150%;
text-align: center;
-webkit-text-size-adjust: none;
-webkit-font-smoothing: antialiased;
-webkit-overflow-scrolling: touch;
overflow-y: auto; overflow-x: hidden;
}
All solutions I've come across are for parallax scrolling or single-page navigation, but I simply want smooth scrolling throughout the entire site on all browsers. Any suggestions?