Visit Mozilla.org

CSS:uri

From MDC

« CSS Reference

[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;
}

[edit] Notes

[edit] Specifications

[edit] Browser compatibility

[edit] See also