What is the correct usage of the CSS background-image property? The key things I am trying to understand is
- Does it need to be in quotes i.e.:
background-image: url('images/slides/background.jpg');
- Can it be a relative path (as above) or must it be a full URL?
- Any other points I should be aware of to make sure it works correctly across standards compliant browsers.