Removing space at the top left and right of div

后端 未结 9 1904
迷失自我
迷失自我 2020-12-01 13:02

I am starting to work with css and have basic issue.

I have a div element:

9条回答
  •  被撕碎了的回忆
    2020-12-01 13:18

    I used this and it worked for me:

    body {
        background-position: 50% 50%;
        margin:0px;
        padding:0px !important;
        height:100%;
    }
    

提交回复
热议问题