How to make this navigation bar floating on top while scrolling?

前端 未结 3 722
無奈伤痛
無奈伤痛 2021-01-28 04:20

The whole navigation bar along with its JavaScript settings can be found here

http://jsfiddle.net/DyJzg/3/

right now it stays at the top of the page, but i am wo

3条回答
  •  有刺的猬
    2021-01-28 04:46

    I think you need to use position:fixed

    nav {
    position:fixed;
    top:0;
    width:100%;
    }
    

    here is modified jsfiddle

提交回复
热议问题