當我使用W3C validater檢查我的網站,它顯示W3C校驗錯誤
「必需屬性‘ALT’未指定」,也
「是必需的元素上面給出的屬性,該屬性例如,在大多數HTML和XHTML文檔類型中,「script」元素需要「type」屬性,「img」元素需要「alt」屬性。 type的值爲type =「text/css」,type =「text/javascript」爲。「
我該如何解決這個問題?
截圖:
這是我的編碼:
protected string GetImageStyle(ImageStub image)
{
if (!image.ImageID.IsNull)
{
image = image.ScaleOptimalWidth(75, 75);
return String.Format("width:75px;height:75px;align='left';-moz-border-radius: 6px;-webkit-border-radius: 6px;border-radius: 6px; padding-left: 2px;alt='img';");
}
return "width:75px;height:75px;align='left';alt='img'";
}
給我們一個小提示,看看你的代碼是什麼。 –