In what situations is it more appropriate to use an HTML IMG tag to display an image, as opposed to a CSS background-image, and vice-versa?
Single-reason answers are welcome, but I'm hoping eventually to see a consolidated list of scenarios, rationales, etc. that can be used as a best-practice guide for making this kind of GUI design decision. Or rather, two lists: Pro and Con.
Factors may include accessibility, browser support, dynamic content, or any kind of technical limits or usability principles.
[Edit] Here are the current, consolidated Pro and Con lists:
PRO
- Use
IMGplus alt attribute if the image is part of the content such as a logo or diagram or person (real person, not stock photo people). —sanchothefat - Use
IMGif you intend to have people print your page and you want the image to be included by default. —JayTee - Use
IMG(withalttext) when the image has an important semantic meaning, such as a warning icon. This ensures that the meaning of the image can be communicated in all user-agents, including screen readers. - Use
IMGif you rely on browser scaling to render an image in proportion to text size. - Use
IMGfor multiple overlay images in IE6. - Use
IMGwith az-indexin order to stretch a background image to fill its entire window. - Using
imginstead ofbackground-imagecan dramatically improve performance of animations over a background.
CON
- Use CSS background images if the image is not part of the content. —sanchothefat
- Use CSS background images when doing image-replacement of text eg. paragraphs/headers. —sanchothefat
- Use
background-imageif you intend to have people print your page and you do not want the image to be included by default. —JayTee - Use
background-imageif you need to improve download times, as with CSS sprites. - Use
background-imageif you need for only a portion of the image to be visible, as with CSS sprites.
UPDATE: Poll questions (which by definition have multiple correct answers) are not exempted from the "accept rate", and people seem to fuss about accept rates lower than 100%. So I have copied this consolidated list as an answer below, and marked it as accepted. This also makes sense since I was asking for a consolidated list in the first place. I'm also leaving the list in the question section, since my own accepted answer won't show up at the top. IMHO this still follows the spirit of the site, since the useful info is at the top.