0

我正在尝试使用dreamweaver创建一个网站,但我遇到了一个小问题,即在左侧创建的边距就像一个白色间隙。我尝试使用CSS将左边距设置为0但没有运气

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.Header {
    background-attachment: scroll;
    background-color: #FFF;
    background-image: url(Background/images/images/Untitled-1_01.gif);
    background-size: cover;
    background-repeat: no-repeat;
    height: 48px;
    width: 100%;
    position: fixed;
    top: 0px;
    background-position: center;
    margin-left: 0px;
}
.Wrapper {
    background-color: #FFF;
    height: auto;
    width: auto;
    margin-left: 0px;
}
</style>
</head>

<body>
<div class="Wrapper">
<div class="Header"></div>
<div>
</div>
  <p>d sdsd </p>
  <p>&nbsp;</p>


</div>


</body>
</html>
4

2 回答 2

0

可能是因为浏览器的默认样式。您可以使用 reset.css 或其他类似 bootstrap.css 来清除浏览器 css。希望这有帮助谢谢

于 2013-08-25T05:01:07.410 回答
0

页面正文包含浏览器默认边距,因此如果您不想在以后遇到此类问题,则应在开始编辑 CSS 后重置该值。

将以下内容复制到 CSS 文件/标签的顶部:

html, body{
   margin: 0;
   padding: 0;
}

然后,您可以删除为纠正此问题而插入的页边距上不必要的更新。

于 2013-08-25T03:15:52.060 回答