gpt4 book ai didi

html - 为什么我的 CSS 有一个 8 像素的边框?

转载 作者:太空宇宙 更新时间:2023-11-03 20:34:32 26 4
gpt4 key购买 nike

我想增加一个 8 像素的边框,但我找不到它的来源。此外,如果我使用边距,它会不成比例地增加边框。

8 extra pixels? Why?

CSS 和整个元素可在此处获得: CSS Resume Project

    @font-face {
font-family: "Open Sans";
src: url(Open_Sans/OpenSans-Regular.ttf);
}
.global {
/*border: solid 10px lightgray;*/
border-radius: 25px;
font-family: 'Open Sans', sans-serif;
background-color: white;
/*position: absolute;*/
top: 20px;
margin-bottom: auto;
padding-bottom: 20px;
right: 20px;
left: 20px;
align-self: center;
}

h3 {
font-weight: 300;
}

p {
font-weight: 300;
}

body {
background-color: lightgray;
}

任何帮助甚至请求请求都将不胜感激。谢谢。

最佳答案

因为它有一个默认设置的 margin 并且 user-agent-stylesheet 看起来类似于这样:

body {
display: block;
margin: 8px
}

所以,只需在 body

中重置 margin
body {
margin:0
}

关于html - 为什么我的 CSS 有一个 8 像素的边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35466860/

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