Make a nav bar stick

前端 未结 11 1342
别跟我提以往
别跟我提以往 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 19:58

    Just use z-index CSS property as described in the highest liked answer and the nav bar will stick to the top.

    Example:

    .navigation {
       /* fixed keyword is fine too */
       position: sticky;
       top: 0;
       z-index: 100;
       /* z-index works pretty much like a layer:
       the higher the z-index value, the greater
       it will allow the navigation tag to stay on top
       of other tags */
    }
    

提交回复
热议问题