How to get the header out of the scroll area?

前端 未结 2 749
旧时难觅i
旧时难觅i 2020-12-10 17:07

I have a header and a long scrollable content. I\'d like the header to not be scrollable. I tried setting overflow: hidden to the header but without success.

2条回答
  •  北荒
    北荒 (楼主)
    2020-12-10 17:38

    Remove your inline styles first. Then add this css.

    html , body {
      margin: 0px;
      height: 100%;
    
    }
    
    .content {
      height: 100%;
      overflow: scroll;
    }
    

    https://jsfiddle.net/sthsuuec/11/

提交回复
热议问题