Div 100% width and a margin

后端 未结 1 714
旧时难觅i
旧时难觅i 2021-01-07 10:13

I\'m trying to put a left and right margin on something that is also 100% width. I was using the box-sizing method which I was hoping would make it say 100% including the ma

1条回答
  •  终归单人心
    2021-01-07 10:41

    You don't have to give width when you are using margin-left and margin-right.

    Try This:

    #main
    {
     margin-left: 10%;
     margin-right: 10%;
     background: red;
    }
    

    0 讨论(0)
提交回复
热议问题