Make a nav bar stick

前端 未结 11 1327
别跟我提以往
别跟我提以往 2020-11-29 19:44

Make a nav bar stick Make a nav bar stick Make a nav bar stick Make a nav bar stick Make a nav bar stick Make a nav bar stick Make a nav bar stick Make a nav bar stick Make

11条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 20:08

    To make header sticky, first you have to give position: fixed; for header in css. Then you can adjust width and height etc. I would highly recommand to follow this article. How to create a sticky website header

    Here is code as well to work around on header to make it sticky.

    header { 
       position: fixed; 
       right: 0; 
       left: 0; 
       z-index: 999;
    }
    

    This code above will go inside your styles.css file.

提交回复
热议问题