gpt4 book ai didi

css - 删除包装 div 之前的空格

转载 作者:太空狗 更新时间:2023-10-29 12:36:56 26 4
gpt4 key购买 nike

我想删除那里的空格。我是外行用户。如果我犯了一个愚蠢的错误,请原谅我。提前致谢。查看其中有空格的图像并引用代码。 image of design of page

html代码:

    <html>
<head>
<title>CSS</title>
<link href="styles.css" rel="stylesheet">
</head>

<body>
<div id="wraper">

<div id="header">
Header
</div>
<div id="sidebar">
Side
</div>
<div id="content">
Content
</div>
<div id="footer">
Footer
</div>

</div>
</body>
</html>

CSS 代码:

    #wraper {
margin:0 auto;
width:800px;
height:1000px;
background:#FCFCFC;
}
#header{
background:#CFCFC0;
height:100px;
width:800px;
}
#content {
float:right;
width:600px;
height:700px;
background:#C0C0C4;
}
#sidebar {
float:left;
width:200px;
height:700px;
background:#CFFCCC;
}
#footer {
clear:both;
background:#C0CC0C;
height:200px;
width:800px;
}

最佳答案

*{  
padding:0;
margin:0;
}

稍后为每个标签手动提供paddingmargin

关于css - 删除包装 div 之前的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12670665/

26 4 0
文章推荐: javascript - 显式呈现 ReCaptcha - Onload 函数未触发
文章推荐: html - 如何强制服务 worker 更新?
文章推荐: php - 存储大型 session 是否会减慢响应时间和服务器
文章推荐: Javascript Marquee 替换 标签