We had a designer do our html/css and while updating some code I noticed this:
img tags just reference the path to the image:
<img src="/images/pic.png">
But for css (with the background tag), it's specified using a url:
header { height: 73px; background: url(/assets/maudi/nav.png); }
What is the importance of url?
background: whiteto be a file namedwhiteon the webserver v.s. simply being a color specification? – Marc B Aug 27 '12 at 20:54