What should I use in my CSS:

/* Example #1: */ background-image: url(image.png);
/* Example #2: */ background-image: url("image.png");
/* Example #3: */ background-image: url('image.png');

What says the W3C? What's really the "right solution" from the W3C?

link|improve this question

2  
+1 good question – Jitendra Vyas Mar 7 '10 at 8:14
possible duplicate of CSS background-image - What is the correct usage? – Robert MacLean Sep 27 '10 at 6:15
feedback

5 Answers

up vote 35 down vote accepted

The W3C says quotes are optional, all three of your ways are legal.

Opening and closing quote just need to be the same character.

If you have special characters in your URL, you should use quotes or escape the characters (see below).

Syntax and basic data types

The format of a URI value is 'url(' followed by optional white space followed by an optional single quote (') or double quote (") character followed by the URI itself, followed by an optional single quote (') or double quote (") character followed by optional white space followed by ')'. The two quote characters must be the same.

Escaping special characters:

Some characters appearing in an unquoted URI, such as parentheses, commas, white space characters, single quotes (') and double quotes ("), must be escaped with a backslash so that the resulting URI value is a URI token: '(', ')', '\,'.

link|improve this answer
1  
Some older browsers may have issues with quoted urls namely IE Mac. – bic72 Jun 29 '10 at 17:31
feedback

Three ways are legal according to the W3C. If you have special characters in the name (as space) you should use the second or the third.

link|improve this answer
feedback

W3 says the following about using URI data type:

The format of a URI value is 'url(' followed by optional white space followed by an optional single quote (') or double quote (") character followed by the URI itself, followed by an optional single quote (') or double quote (") character followed by optional white space followed by ')'. The two quote characters must be the same.

With regard to quotes: just be consistent throughout the CSS and you're forced to use them when the path contains spaces.

link|improve this answer
Wow, many same answers and quotes in a short time :o – BalusC Jan 30 '10 at 18:17
feedback

Here is what the W3 CSS 2.1 specification says:

The format of a URI value is 'url(' followed by optional white space followed by an optional single quote (') or double quote (") character followed by the URI itself, followed by an optional single quote (') or double quote (") character followed by optional white space followed by ')'. The two quote characters must be the same.

Source: http://www.w3.org/TR/CSS21/syndata.html#uri

So all of the 3 examples you proposed are correct, but the better one is the first one because you use less characters and so the resulting CSS file will be more lightweight.

link|improve this answer
3  
Don't know why this got down-voted; for a high traffic site, ideas like this makes a big difference over the course of a year. – Joisey Mike Nov 10 '11 at 21:35
↑ I really doubt that. How many urls are there per css? Not too much. And you just spared TWO bytes (in ascii or utf-8) in each. Plus, you could actually make the url longer, because you might need to use backslashes. There are much better ways to reduce web's size... – kralyk Apr 18 at 13:23
feedback

Example 2 or 3 are best:

From W3C: The format of a URI value is 'url(' followed by optional white space followed by an optional single quote (') or double quote (") character followed by the URI itself, followed by an optional single quote (') or double quote (") character followed by optional white space followed by ')'. The two quote characters must be the same.

Note from the same explanation, Example 1 is acceptable, if appropriate characters are escaped.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.