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

前端 未结 3 738
無奈伤痛
無奈伤痛 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:50

    if your element is 'nav' or your element class is '.nav' use this piece of css code:

    nav, .nav{
    position:fixed;
    top:0;
    width:your_custom_with;
    height: your_custom_height
    }
    

    note: check this article of css positioning for more details: http://www.w3schools.com/css/css_positioning.asp

提交回复
热议问题