vote up 0 vote down star

Okay, what is Amazon doing? They put all their CSS definitions in the <head> tag? I can see the purpose of saving requests, but it doesn't seem very dynamic to me.

Any ideas?

flag

75% accept rate

4 Answers

vote up 1 vote down check

That's very likely not hard-coded in there. It's probably more dynamic than you think. I don't know what set-up Amazon has, but I'm guessing they're using some sort of templating language to add those styles dynamically.

link|flag
Okay, sorry, on closer examination they do have a lot of <link>'s there. Very plausible, thanks. – David Andersson Oct 19 at 14:15
vote up 1 vote down

Putting the css on other place then head will trigger a rerendering of the side in some browsers. So if you put your css at the bottom of the page you get an unstyled page until the css is loaded and then the whole page will be rendered again with the new style rules. http://developer.yahoo.com/performance/rules.html#css_top

link|flag
vote up 2 vote down

For me it makes sense. Amazon is a high traffic website and reducing request is surley a good thing for them.

Why shouldn't it be dynamic? Where is the difference between including the CSS or including it via a link tag.

link|flag
You're right. Poorly put by me. – David Andersson Oct 19 at 14:16
-1, on the other hand, you cannot cache the css then, so the size of the responses augment which definitely affect your bandwidth. Note that with a correct expiry date, you'll have the same effect (less requests) with less costly pages. So I suppose there is another reason.... – Matthieu M. Oct 19 at 14:41
vote up 4 vote down

The <head> element is traditionally the place for CSS files because the browser will download the files at the beginning of the request.

link|flag
4  
I think he refers to the fact that they don't use a link-tag but directly embed the css via style-tag – jitter Oct 19 at 14:13

Your Answer

Get an OpenID
or

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