gpt4 book ai didi

css - 我如何摆脱我没有分配的 margin ?

转载 作者:太空宇宙 更新时间:2023-11-03 17:57:27 25 4
gpt4 key购买 nike

这就是我的 css 中的所有内容:

    .menu {
background-color: black;
color: white;
height: 100px;
opacity: 0.5;
}

html {
background-image: url('image.jpg');
background-size:cover;
}

但出于某种原因,此栏仍然有边距。为什么?我的 div 中没有文本或任何内容。

最佳答案

所有浏览器都有默认的“主要”元素边距,这可能就是您所看到的。尝试在你的 css 的开头添加它以重置所有这些并更一致地跨浏览器工作:

/* css reset */
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;
}

关于css - 我如何摆脱我没有分配的 margin ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26024274/

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