gpt4 book ai didi

html - 意外的填充 html 文档,来自 chrome 中的窗口顶部边框

转载 作者:行者123 更新时间:2023-11-28 13:30:45 25 4
gpt4 key购买 nike

这是我的整个html文档

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin-left: 0px;
margin-top: 0px;
background-color: #0ff;
}
</style>
</head>
<body>
<div style="background-color: #090">some text</div>
</body>
</html>

在 google chrome 中,div 标签是窗口顶部边框的填充,大约 20-25px,在其他浏览器中,一切都很好,div 标签没有顶部填充。有人知道为什么 chrome 会出现这个问题吗?

最佳答案

当你制作跨浏览器的应用程序时,总是使用重置样式,这样你可以很容易地修复所有的不一致,你可以尝试一些基本的东西,比如:

* {
margin: 0;
padding: 0;
}

或使用其他一些“更完整”的解决方案,例如此处的解决方案:

例如 Eric Meyer 的 Reset Styles 告诉我们使用:

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

希望对您有所帮助!

关于html - 意外的填充 html 文档,来自 chrome 中的窗口顶部边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11817484/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com