Basically I want to have two sections with completely independent scrolls:
- A TOC (generated with JS using H1,H2,H3 from the content)
- Content (text and images)
Here's the CSS:
#post-content {
width: 70%;
margin-left: 30%;
}
#toc {
width: 30%;
position: fixed;
height: 600px; // this would probably be calculated using the viewport
overflow: scroll;
}
I already have the basic HTML/CSS/JS at this CodePen but I'm unable for some reason to have the TOC scroll to the bottom. Meaning, there are more UL/LI's but they aren't shown.
I'm pretty sure I'm failing at the CSS but I can't get it right.
Any help, please?
Thanks!