Header and footer with fixed position while content is scrollable?

后端 未结 3 1375
无人及你
无人及你 2020-12-31 10:05

I\'m trying to make a website where header and footer have fixed position while content scrolls in the middle.

3条回答
  •  感情败类
    2020-12-31 10:39

    1. remove the position styles on the header and footer
    2. set a height on the content
    3. add a style overflow-y:auto to the content

    If you want the content height to match the browser window (less the header and footer), use javascript to set it (and adjust on window resize events)

提交回复
热议问题