0

Dreamweaver を使用して Web サイトを作成しようとしていますが、左側に空白のようなマージンが作成されるという小さな問題があります。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