100% DIV width is not really 100%

后端 未结 8 1686
太阳男子
太阳男子 2020-12-01 18:09

When I have a

with width: 100%, it is not really 100%:

testtesttesttesttest
... #di
8条回答
  •  执笔经年
    2020-12-01 18:38

    Width: 100%, is highly affected by its margin and margin and padding of its parent (body in your case). SO, reset them first

    Something like

    body {
        margin: 0;
        padding: 0;
    }
    #div {
      margin: 0;
      width: 100%;
      background-color: red;
    }
    

    DEMO

提交回复
热议问题