position: fixed overlapping page

后端 未结 3 669
自闭症患者
自闭症患者 2021-01-22 16:33

Here is the fiddle. I am making a grocery list web app, and I am making the top div a fixed position. When I do this, the div seems to overlap the rest of the page. I have tried

3条回答
  •  粉色の甜心
    2021-01-22 17:08

    You need to add another div to wrap the content with a margin-top.

    DEMO

    http://jsfiddle.net/sZaxc/8/

    HTML

    CSS

    #main {
        margin-top: 50px;
    }
    

    I also added a z-indexand top: 0to your #top-div - just in case.

提交回复
热议问题