Is it possible to navigate between div elements using arrow keys like in Notion's editor?
<div>
hello
word
</div>
<div>hi</div>
<div>notion</div>
Given the code above, how can one move the cursor to another div element using arrow keys?
For instance, imagine the cursor is placed right in front of "hello."
When the down arrow key is pressed, the cursor moves to "word."
Pressing the down arrow key again will move the cursor to "hi," which is the next div element content.