I did a lot of research on this but apparently it's not possible with pure html/css as position:fixed only fixes it to browser window, so I thought I'd ask in this section.
I have a page container, and inside it are two sections. The left section is a vertical nav bar with some links, while the right section is the actual page content. I want the right side to be scrollable, but the left side to be fixed to the page container (ie won't scroll when I scroll that page), but be able to move when I scroll the entire browser window.
I've already tried to set #pagecontainer and #linkspage to position:relative, and .sidelinks to position:absolute, that doesn't do anything as far as I can tell... or it just doesn't do what I want.
I would like to remind you that this can be achieved without JavaScript and it is always better to do things with css first.
HTML Code:
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><title>odd ball</title><style>
.page{background-color:lime;margin:1em;padding:1em;position:relative;max-width:52em;}.stuf1{position:relative;background-color:red;height:30em}.link1{position:absolute;width:10em;top:1px;left:1px;background-color:#CCC}.tent1{position:absolute;width:40em;height:30em;top:1px;left:11em;background-color:pink;overflow:scroll}.stuf2{position:relative;background-color:blue;height:30em}.link2{position:absolute;width:10em;top:1px;left:1px;background-color:#eee}.tent2{position:absolute;width:40em;height:30em;top:1px;left:11em;background-color:purple;overflow:scroll}.stuf3{position:relative;background-color:green;height:30em}.link3{position:absolute;width:10em;top:1px;left:1px;background-color:#999}.tent3{position:absolute;width:40em;height:30em;top:1px;left:11em;background-color:yellow;overflow:scroll}
</style></head><body><div class="page"><div class="stuf1"><div class="link1"><ul><li>link one</li><li>link two</li><li>link three</li><li>link four</li><li>link five</li></ul></div><div class="tent1"><p>content of links page</p><p>content of links page</p><p>content of links page 1</p><p>content of links page</p><p>content of links page</p><p>content of links page 2</p><p>content of links page</p><p>content of links page</p><p>content of links page 3</p><p>content of links page</p><p>content of links page</p><p>content of links page 4</p><p>content of links page</p><p>content of links page</p><p>content of links page 5</p><p>content of links page</p><p>content of links page</p><p>content of links page 6</p><p>content of links page</p><p>content of links page</p><p>content of links page 7</p><p>content of links page</p><p>content of links page</p><p>content of links page 8</p><p>content of links page</p><p>content of links page</p><p>content of links page 9</p><p>content of links page</p><p>content of links page</p><p>content of links page 10</p><p>content of links page</p><p>content of links page</p><p>content of links page 11</p></div></div><hr /><div class="stuf2"><div class="link2"><ul><li>link one</li><li>link two</li><li>link three</li><li>link four</li><li>link five</li></ul></div><div class="tent2"><p>content of links page</p><p>content of links page</p><p>content of links page 1</p><p>content of links page</p><p>content of links page</p><p>content of links page 2</p><p>content of links page</p><p>content of links page</p><p>content of links page 3</p><p>content of links page</p><p>content of links page</p><p>content of links page 4</p><p>content of links page</p><p>content of links page</p><p>content of links page 5</p><p>content of links page</p><p>content of links page</p><p>content of links page 6</p><p>content of links page</p><p>content of links page</p><p>content of links page 7</p><p>content of links page</p><p>content of links page</p><p>content of links page 8</p><p>content of links page</p><p>content of links page</p><p>content of links page 9</p><p>content of links page</p><p>content of links page</p><p>content of links page 10</p><p>content of links page</p><p>content of links page</p><p>content of links page 11</p></div></div><hr /><div class="stuf3"><div class="link3"><ul><li>link one</li><li>link two</li><li>link three</li><li>link four</li><li>link five</li></ul></div><div class="tent3"><p>content of links page</p><p>content of links page</p><p>content of links page 1</p><p>content of links page</p><p>content of links page</p><p>content of links page 2</p><p>content of links page</p><p>content of links page</p><p>content of links page 3</p><p>content of links page</p><p>content of links page</p><p>content of links page 4</p><p>content of links page</p><p>content of links page</p><p>content of links page 5</p><p>content of links page</p><p>content of links page</p><p>content of links page 6</p><p>content of links page</p><p>content of links page</p><p>content of links page 7</p><p>content of links page</p><p>content of links page</p><p>content of links page 8</p><p>content of links page</p><p>content of links page</p><p>content of links page 9</p><p>content of links page</p><p>content of links page</p><p>content of links page 10</p><p>content of links page</p><p>content of links page</p><p>content of links page 11</p></div></div></div></body></html>
Bookmarks