When defining something like a background image URL in a CSS file, when using a relative URL, where is it relative to? For example:

/stylesheets/base-styles.css:

div#header { 
    background-image: url(images/header-background.jpg);
}

If I include this style-sheet into different documents via <link ... /> will the relative URL in the CSS file be relative to the stylesheet document in /stylesheets/ or relative to the current document it's included to? Possible paths like:

/item/details.html
/about/index.html
/about/extra/other.html
/index.html
link|improve this question

feedback

5 Answers

up vote 76 down vote accepted

According to W3:

Partial URLs are interpreted relative to the source of the style sheet, not relative to the document

Therefore, in answer to your question, it will be relative to /stylesheets/.

If you think about this, this makes sense, since the CSS file could be added to pages in different directories, so standardising it to the CSS file means that the URLs will work wherever the stylesheets are added.

link|improve this answer
feedback

It's relative to the CSS file.

link|improve this answer
feedback

For CSS style sheets, the base URI is that of the style sheet, not that of the source document.

(Anything else would be broken, IMNSHO)

link|improve this answer
feedback

In order to create modular style sheets that are not dependent on the absolute location of a resource, authors may use relative URIs. Relative URIs (as defined in [RFC3986]) are resolved to full URIs using a base URI. RFC 3986, section 5, defines the normative algorithm for this process. For CSS style sheets, the base URI is that of the style sheet, not that of the source document.

For example, suppose the following rule:

body { background: url("yellow") }

is located in a style sheet designated by the URI:

http://www.example.org/style/basic.css

The background of the source document's BODY will be tiled with whatever image is described by the resource designated by the URI

http://www.example.org/style/yellow

User agents may vary in how they handle invalid URIs or URIs that designate unavailable or inapplicable resources.

Taken from the CSS 2.1 spec.

link|improve this answer
feedback

It's relative to the stylesheet, but I'd recommend making the urls relative to your url:

div#header { 
  background-image: url(/images/header-background.jpg);
}

That way, you can move your files around without needing to refactor them in the future.

link|improve this answer
I agree. Good eye. – anonymous coward Jun 2 '09 at 17:32
What difference does the extra "/" at the front make? – Casebash May 12 '11 at 6:36
1  
Just like pathnames on the command line, the leading / at the front of the path means it points to an absolute resource on the current web server. – Pullets Forever May 21 '11 at 16:09
feedback

Your Answer

 
or
required, but never shown

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