2015-11-06 78 views
0

當我嘗試在w3c上驗證自己的CSS代碼時,如果已經詢問了這些錯誤,那麼會發生這些錯誤,但我似乎無法找到答案。固定的一些錯誤,但這些仍然存在。在w3c中驗證時發生CSS解析錯誤

Parse Error <html> <head> > <title>style2.CSS</title> </head> <body> html{ background-image: url(headerimg.jpg); } 

130解析錯誤

<head> 
    <meta http-equiv="content-type";content="text/html";charset="UTF-8"/> 

    <title>style2.CSS</title> 

</head> 

<body> 

html{ 
background-image: url(headerimg.jpg); 


} 
header{ 

background-image: url(headerimg.jpg); 
background-position: center top; 
background-repeat: no-repeat; 
background-size:1000px 150px; 


} 

body{ 

background-image:url(bg.jpg); 
padding-left:175px; 
padding-right:175px; 
width:940px; 
} 



#text{ 

background-color:white; 
padding-top:0px;  
padding-left:20px; 
padding-right:69.5px; 
width:600px; 
padding-bottom:0px; 
display:inline-block; 


} 

#headchoix{ 

background-color:#333; 
height:50px; 

word-wrap: normal; 
padding-top:30px; 
} 
#bot{ 

float: top; 
float:right; 
background-color:#D3D3D3; 
height:713px; 
padding-left:0.1px; 
width:250px; 
} 
#top1,#top2,#top3,#top4,#top5,#top6{ 
padding-right:40px; 
color:white;  
padding-left:10px; 
font-size:150%; 
font-weight: bold; 
    text-decoration:none; 
} 
#pad{ 

float:left; 
} 
#footerchoix{ 

background-color:#333; 
width:940px; 
height:160px; 
display:inline-block; 
} 

#aside2,#aside1{ 
float:left; 
padding-right:170px; 
color:white; 
} 
#aside3{ 
float:left; 
color:white; 
} 
#aside4{ 
float:right; 
color:white; 
width:200px; 
} 


a:visited{ 
color:black; 
} 
a:hover{ 

color:red; 
} 
a:active{ 

color:yellow; 
} 

a:link{ 
color:blue; 
} 


</body> 
+0

你說的CSS,但你似乎驗證HTML(與CSS代碼作爲內容)。 – unor

回答

0

您的元標記有錯誤的分號:

此:

<meta http-equiv="content-type";content="text/html";charset="UTF-8"/> 

應改爲:

<meta http-equiv="content-type" content="text/html" charset="UTF-8" /> 

正如驗證程序所示,在content屬性之前的分號出現分析錯誤。那是因爲你不應該用分號分隔屬性。您使用空格字符來分隔屬性。