Aşağıdaki kodlar bir css dosyasından alınmadır. Bu 2 kod girişinden W3C, 4 tane hata çıkartıyor.Ancak css konusunda bilgim yeterli olmadığından dolayı anlayamadım.

html #lightview { /* IE6 */ position: absolute; margin-top: expression( (-1 * this.offsetHeight / 2 + (document.documentElement ? document.documentElement.scrollTop : 0) + (Lightview.navbarHeight || 0)) + 'px'); margin-left: expression( -1 * this.offsetWidth / 2 + (document.documentElement ? document.documentElement.scrollLeft : 0) + 'px'); }
/* Always cover 100% of the screen in IE6 */ html #overlay { position: absolute; height: expression(((window.Enumerable && window.Enumerable.max) ? [document.body.scrollHeight, document.documentElement.scrollHeight, document.body.offsetHeight, document.documentElement.clientHeight].max() : document.documentElement.scrollHeight) + 'px' ); width: expression(((window.Enumerable && window.Enumerable.max) ? [document.body.scrollWidth, document.documentElement.scrollWidth, document.body.offsetWidth, document.documentElement.clientHeight].max() : document.documentElement.scrollWidth) + 'px' ); }
Ayrıca bir şey daha danışmak istiyorum. W3C aşağıdaki img tag'ı içerisindeki onload için 1 hata veriyor.
class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></a>Attribute "onload" exists, but can not be used for this element.
İnternette araştırdım biraz img tag'ında W3C "onload" kullanılınca hata veriyormuş sebepsiz yere.
Ancak bunu kaldırmak istiyorum. Ne yapabilirim ?
Teşekkürler