I have and element classed .root-body
it contain all page content and it scroll instead of <body>
. I want to toggle a class to my page .navigation
when user scroll inside the .root-body
HTML
<body>
<div class="navigation"></div>
<div class="root-body">
<!-- page content goes here -->
</div>
</body>
CSS
body {
overflow: hidden;
}
.root-body {
width: 100vw;
height: 100vh;
overflow: scroll;
}