html 无法摆脱上边距

html cannot get rid of top margin

我的网页有上边距。

我无法摆脱它。我试过了

html {
    margin:0px;
}
body {
    margin:0px;
}

嗨很多 css 元素有默认的边距和填充,总是使用重置 css 在您的 css

中添加以下代码
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
    margin:0;
    padding:0;
}
html,body {
    margin:0;
    padding:0;
}

或参考下文link http://www.javascriptkit.com/howto/nomargin.shtml

尝试调用合适的重置css Reset CSS

A CSS Reset(或“Reset CSS”)是一组简短的、经常压缩(缩小)的 CSS 规则,可重置所有 HTML 元素到一致的基线。如果您不知道,每个浏览器都有自己的默认 'user agent' 样式表,用于使无样式的网站看起来更清晰。