我在DW下驗證的結果是:
嚴重性 文件 描述 行
錯誤 D:\asp\maxfile\test\top.html 標簽“td”在當前活動版本中不具有屬性“background”。
錯誤的代碼是這樣的
處理方法:
css 中定義背景
xhtml 中
css中:
#aaaa {
background-image: url(images/top_06.gif);
}
如果不希望重復 加上 background-repeat: no-repeat;
另外有一點要注意的,每個ID只能在同一頁面使用一次,否則會出錯。
下面為MaxFile.cn網站TOP使用的CSS
.table {
border-right-width: 1px;
border-right-style: solid;
border-right-color: #CCCCCC;
}
#top_bg {
background-image: url(images/top_06.gif);
}
#top_bg_ {
background-image: url(images/top_06.gif);
}
#top_bg2 {
background-image: url(images/top_32.gif);
}
#top_bg2_2 {
background-image: url(images/top_32.gif);
}
#top_bg2_3 {
background-image: url(images/top_32.gif);
}
#top_bg3 {
background-image: url(images/top_40.gif);
}
標簽: