I have a div with overflow: auto; and the body with overflow: hidden;. But the page down key only works for the body tag. How can use the page down and page up keys to scroll a div without clicking on the div. Here is my code.
<html>
<body>
<div><h1>Here goes the content</h1></div>
<style>
div {
height:100vh;
background:orange;
overflow: auto;
}
</style>