position: fixed overlapping page

后端 未结 3 709
自闭症患者
自闭症患者 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:22

    Wrap your content with div and give it the margin-top to the same height as your fixed content.

    SEE DEMO HERE

    HTML

    Kitchen List

      Please enter a grocery item

      CSS

      .container {
          margin-top: 50px;
      }
      

    提交回复
    热议问题