Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I specify different image sizes for favicon PNGs like so:

<link rel="icon" type="image/png" sizes="16x16" href="/favicon.png" />
<link rel="icon" type="image/png" sizes="24x24" href="/favicon-24px.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32px.png" />
<link rel="icon" type="image/png" sizes="48x48" href="/favicon-48px.png" />
<link rel="icon" type="image/png" sizes="64x64" href="/favicon-64px.png" />
<link rel="icon" type="image/png" sizes="256x256" href="/favicon-256px.png" />
<link rel="icon" type="image/png" sizes="512x512" href="/favicon-512px.png" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />

Does every one of these files get fetched?

share|improve this question

1 Answer

According to the specification, the most appropriate icon will be used. So there is no a need to fetch something that has no use.

If multiple icons are provided, the user agent must select the most appropriate icon according to the type, media, and sizes attributes.

share|improve this answer
1  
The spec only says that it will decide which to use. Whether it fetches is just an assumption though. – chimerical Jan 10 '12 at 22:35
1  
And don't count on the most appropriate icon being fetched. Firefox seems to just get the largest one and then scales it down. Internet Explorer doesn't seem to support PNG files at all. – Twilite Apr 2 '12 at 15:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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