My website has a content div which has to be of specific height. Let’s say 800px.
I’m looking for a way I could enter the content in that div and make the div break it up and make it available via some “next” anchors.
Is such thing possible in a regular html page, no wordpress no drupal no plugins.
Style your div with overflow:hidden;
Then add a button to make it scroll 800px down
You should also use overflow:scroll-y; to make it simple.