2013-08-25 134 views
0

我試圖創建一個網站使用Dreamweaver,但我有一個小的問題,在左邊創建了一個空白,就像一個白色的gap.I試圖設置左邊距爲0使用CSS,但沒有運氣HTML Dreamweaver左邊距

<!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> 

回答

0

頁面的主體包括瀏覽器的默認保證金,所以你一旦你開始編輯CSS,如果你不希望在以後的問題,這樣的撞擊應該重置價值。

複製以下到頂部的你的CSS文件/標籤:

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

隨着那那麼你可以去除您已經插入到解決這個問題的利潤率不必要的更新。

0

可能是因爲瀏覽器的默認樣式。您可以使用reset.css或其他像bootstrap.css來清除瀏覽器的CSS。 希望這會有幫助 謝謝