身体上没有余量

时间:2014-05-22 11:32:54

标签: css

我的身体有8px的余量但我的css中有:

body {    
    margin: 0 !important;
    padding: 0 !important;
}

为什么不遵守这些款式? CSS文件正在正确加载,我已经检查过了。

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="/styles.css" />
    </head>
    <body id="page-name">
        <div id="drag-overlay"></div>
        <h1>Title</h1>
    </body>
</html>

1 个答案:

答案 0 :(得分:1)

你试过这个吗?

html, body {    
     margin: 0 !important;
     padding: 0 !important;
}