Header and footer with fixed position while content is scrollable?

后端 未结 3 1361
无人及你
无人及你 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:48

    The easiest fix for this is to add padding equivalent to the height of your static header and footer:

    #content {
        width: 80%;
        margin: 0 auto;
        padding: 60px 0;
    }
    

    JSfiddle

提交回复
热议问题