如何从我的网站代码中删除白色边框?

时间:2015-02-28 12:00:56

标签: html css

这是我的JSFiddle

html, body {
     height: 100%;
}
    #background {
        height: 100%;
        background: url(http://phosproject.com/wp-content/themes/phos_theme/images/7.jpg); no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 440px;
    height: 460px;
    margin-top: -230px; /* Half the height */
    margin-left: -220px; /* Half the width */

}

在我的网站上,背景似乎有一个白色的边框,让它看起来很糟糕,我想知道如何删除它。

1 个答案:

答案 0 :(得分:0)

html body有默认保证金。你需要删除它。

body {
  margin: 0;
}

Updated fiddle.