Navbar fixed on the top of HTML page (CSS / HTML)

前端 未结 5 1460
心在旅途
心在旅途 2020-12-18 13:37

I\'m trying to learn some of CSS3 and HTML5 but I\'m a little confused with somethings. For now, I want create a page with a fixed navbar on the top of page, that scrolls wi

5条回答
  •  抹茶落季
    2020-12-18 14:01

    wrap you content with a div and give it padding top 100px(height of header)

    as per my structure

    .bodyPan{
        padding-top:100px;
    }
    

    working jsFiddle file

提交回复
热议问题