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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -