Other than the fact that PNG is a more common image format, is there any technical reason to favor favicon.png vs. favicon.ico?
I'm supporting modern browsers which all support PNG favorite icons.
|
5
|
|
|
|
|
|
png allows you to use alpha-channel transparency, which can look nicer on browsers that display the icon on various backgrounds (such as colored/gray tabs versus a white address bar) - especially if your icon isn't blocky in nature. Modern browsers all allow specification of a favicon via a |
||
|
|
|
Avoid PNG in any case if you want reliable IE6 compatibility. |
||||||
|
|
|
If you're going for a PNG, you still have to create a And you don't have to do it for the alpha transparency either. ICO files support alpha transparency just fine, though hardly any tools allow you to create them. I've used Dynamic Drive's FavIcon Generator several times to create |
||
|
|
|
|
.png files are nice, but .ico files provide alpha-channel transparency, AND give you backwards compatibility. Have a look at which type StackOverflow uses for example (note that it's transparent):
The apple-itouch thingy is for iphone users that make a shortcut to a website. |
|||
|
|
|
|
The theoretical advantage of *.ico files is that they are containers than can hold more than one icon. You could for instance store an image with alpha channel and a 16 colour version for legacy systems, or you could add 32x32 and 48x48 icons (which would should up when dragging a link to Windows explorer). This good idea, however, tends to clash with browser implementations. |
||
|
|