CSS:uri
From MDC
[edit] Summary
Many CSS properties take a URL as value, such as background, cursor, @font-face etc.
[edit] Syntax
<a_css_property> : url("http://mysite.example.com/mycursor.png") ;
<a_css_property> : url(http://mysite.example.com/mycursor.png) ;
<a_css_property> : "http://mysite.example.com/mycursor.png" ;
<a_css_property> : http://mysite.example.com/mycursor.png ;
[edit] Examples
.topbanner {
background: url("topbanner.png") #00D repeat fixed;
}