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

前端 未结 5 1468
心在旅途
心在旅途 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-18 14:17

    Elements with "fixed" or "absolute" position don't occupy space in the page, so a possible workaround for you is to add a margin or padding to your content:

    another test











































    again

    #content{ margin-top: 100px; }

    http://jsfiddle.net/KUpnA/

提交回复
热议问题