css - png files not displaying in IE -
hello can tell me why css not display png in ie? many thanks
#header { width:1004px; height:309px; float: left; margin:0px; padding:0px; background-image::url(../images/header.png); background-repeat:no-repeat; }
there double colon in ::url
try this:
#header { width:1004px; height:309px; float: left; margin:0px; padding:0px; background-image:url(../images/header.png); background-repeat:no-repeat; }
Comments
Post a Comment