Bootstrap 4 fixed top nav and fixed sidebar

前端 未结 2 481
南旧
南旧 2021-02-01 07:58

This is a great example of how to create a navbar with a sidebar. Can anyone modify the code so that the top nav is top-fixed and the sidebar fixed/static with only the main pag

2条回答
  •  不知归路
    2021-02-01 08:20

    The sticky-top is working, but it doesn't appear to be working for two reasons...

    1. There isn't enough content in the main content area to scroll
    2. It's positioned at top:0 so it hides behind the fixed navbar

    Add CSS to offset the top of the sidebar (the same as height of fixed navbar).

    .sticky-offset {
        top: 56px;
    }
    
    
      ..(sidebar)..

    And, then add enough content (or height) in the main area so that scrolling is necessary...

    Working Demo: https://www.codeply.com/go/7XYosZ7VH5

    
    

提交回复
热议问题