Keeping a header always in view

后端 未结 5 2122
栀梦
栀梦 2020-12-16 06:04

I am designing my website and I\'m trying to find a way to keep a header always in the screen.

For an example, take a look at this extra long page on Wikia.com. Noti

5条回答
  •  悲哀的现实
    2020-12-16 06:47

    Always remember if you have to stick the header or footer { position : fixed; } can be used.

    So apply CSS like this:

    .header{
        top:0;
        width:100%;
        height:50px;
        position:fixed;  // this is the key
    }
    

提交回复
热议问题