up vote 172 down vote favorite
87
share [g+] share [fb]

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

  1. Use IMG plus 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
  2. Use IMG if you intend to have people print your page and you want the image to be included by default. —JayTee
  3. Use IMG (with alt text) 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.
  4. Use IMG if you rely on browser scaling to render an image in proportion to text size.
  5. Use IMG for multiple overlay images in IE6.
  6. Use IMG with a z-index in order to stretch a background image to fill its entire window.
  7. Using img instead of background-image can dramatically improve performance of animations over a background.

CON

  1. Use CSS background images if the image is not part of the content. —sanchothefat
  2. Use CSS background images when doing image-replacement of text eg. paragraphs/headers. —sanchothefat
  3. Use background-image if you intend to have people print your page and you do not want the image to be included by default. —JayTee
  4. Use background-image if you need to improve download times, as with CSS sprites.
  5. Use background-image if 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.

link|improve this question
Do you need the image to take up space or do you want to write over it? – geowa4 Jan 29 '09 at 18:28
feedback

16 Answers

It's a black and white decision to me. If the image is part of the content such as a logo or diagram or person (real person, not stock photo people) then use the <img /> tag plus alt attribute. For everything else there's CSS background images.

The other time to use CSS background images is when doing image-replacement of text eg. paragraphs/headers.

link|improve this answer
Exactly, if it's not part of the content there is no reason to use an <img> tag – Birk Jan 29 '09 at 18:38
Excellent case! CON--Use background-image when doing image-replacement of text. – system PAUSE Jan 29 '09 at 18:40
Yeah, it's never ideal to do image replacement but some designs just won't be right until you do. – sanchothefat Jan 29 '09 at 18:44
+1 agreed. Note that image replacement of text falls in the same "not part of the content", since the content is the actual text. – eglasius Apr 10 '09 at 6:53
Doesn't a background-image have to be attached to something? You have to add some content to add a background to it and at the moment you can only have 1 background per content element... – Adrian Apr 26 '10 at 15:59
show 1 more comment
feedback
up vote 31 down vote accepted

PRO

  1. Use IMG plus 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
  2. Use IMG if you intend to have people print your page and you want the image to be included by default. —JayTee
  3. Use IMG (with alt text) 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.
  4. Use IMG if you rely on browser scaling to render an image in proportion to text size.
  5. Use IMG for multiple overlay images in IE6.
  6. Use IMG with a z-index in order to stretch a background image to fill its entire window.
  7. Using img instead of background-image can dramatically improve performance of animations over a background.

CON

  1. Use CSS background images if the image is not part of the content. —sanchothefat
  2. Use CSS background images when doing image-replacement of text eg. paragraphs/headers. —sanchothefat
  3. Use background-image if you intend to have people print your page and you do not want the image to be included by default. —JayTee
  4. Use background-image if you need to improve download times, as with CSS sprites.
  5. Use background-image if you need for only a portion of the image to be visible, as with CSS sprites.
link|improve this answer
I'm still iffy on the background images for text replacement part. I see people using background-images then using text-indent: -9999px for the text. However I know having text indents like this used to be bad for SEO and I'd imagine it still must be for some search engines. But most important, if you turn images off but leave css on the image dissapears but the text is still off the screen. As far as I am concerned the alt text on an image is for if images are not displays so img tags are better. – Scott Reed Apr 13 '11 at 10:45
feedback

Browsers aren't always set to print background images by default; if you intend to have people print your page :)

link|improve this answer
1  
Sounds like: PRO--Use IMG if you want the image to print by default. CON--Use background-image if you don't want the image to print by default. Nice one! – system PAUSE Jan 29 '09 at 18:38
feedback

If you have your CSS in an external file, then it's often convenient to display an image that's used frequently across the site (such as a header image) as a background image, because then you have the flexibility to change the image later.

For example, say you have the following HTML:

<div id="headerImage"></div>

...and CSS:

#headerImage {
    width: 200px;
    height: 100px;
    background: url(Images/headerImage.png) no-repeat;
}

A few days later, you change the location of the image. All you have to do is update the CSS:

#headerImage {
    width: 200px;
    height: 100px;
    background: url(../resources/images/headerImage.png) no-repeat;
}

Otherwise, you'd have to update the src attribute of the appropriate <img> tag in every HTML file (assuming you're not using a server-side scripting language or CMS to automate the process).

Also background images are useful if you don't want the user to be able to save the image (although I haven't ever needed to do this).

Steve

link|improve this answer
1  
Background images can certainly be saved with some minimal view source spelunking, just not as easily as right-clicking on an image. – Michael Hackner Dec 2 '10 at 16:03
feedback

Use background images only when necessary e.g. containers with image that tiles.

One of the major PROS by using IMAGES is that it is better for SEO.

link|improve this answer
feedback

I would add another two arguments:

  • An img tag is good if you need to resize the image. E.g. if the original image is 100px by 100 px, and you want it to be 80px by 80px, you can set the CSS width and height of the img tag. I don't know of any good way to do this using background-image.

  • Using background-image is good when you need to dynamically switch between sprites. E.g. if you have a button image, and you want a separate image displayed when the cursor is hovering over the element, you can use a background image containing both the normal and hover sprites, and dynamically change the background-position.

link|improve this answer
feedback

Use CSS background-image in a case of multiple skins or versions of design. Javascript can be used to dynamically change a class of an element, which will force it to render a different image. With an IMG tag, it may be more tricky.

link|improve this answer
you can dynamically change the src attribute of an image tag too, just as easy as changing a class – sanchothefat Feb 15 '09 at 16:51
1  
@sanchothefat, true, however, in this case image source would need to be kept in JS instead of CSS. IMO css file would be more appropriate to keep file name. – MK_Dev Feb 16 '09 at 0:34
feedback

Foreground = img.

Background = CSS background.

link|improve this answer
feedback

About the same as sanchothefat's anwser, but from a different aspect. I always ask myself: if I may remove completely the stylesheets from the website, the remaining elements do only belong to the content? If so, I did my job well.

link|improve this answer
feedback

Also, i have a gallery section which has inconsistent picture sizes so even though those images are obviously considered content, I use background images and center them in divs with a set size. This is similar to what facebook does in their albums..

link|improve this answer
feedback

Here's a technical consideration: will the image be generated dynamically? It tends to be a lot easier to generate the <img> tag in HTML than to try to dynamically edit a CSS property.

link|improve this answer
1  
And what about inline styles? This question really must not decided by this idea. – Török Gábor Apr 20 '09 at 16:54
maybe I should phrase is this way: would you rather work with a DOM element or an element attribute? – Bryan M. Aug 27 '10 at 17:54
feedback

What about the size of the image? If I use the img tag, the browser scales the image. If I use css background, the browser just cuts a chunk from the larger image.

link|improve this answer
feedback

well....

Using a background image, you need to absolutely specify the dimensions. This can be a significant problem if you don't actually know them in advance or cannot determine them.

A big problem with <img> is overlays. What if I want an css inner shadow on my image (box-shadow:inset 0 0 5px rbg(0,0,0,.5))? In this case, since can't have child elements, you need to use positioning and add empty elements which equates to useless markup.

In conclusion, it's quite situational.

link|improve this answer
feedback

Just a small one to add, you should use the img tag if you want users to be able to 'right click' and 'save-image'/'save-picture', so if you intend to provide the image as a resource for others.

Using background image will (as far as I'm aware on most browsers) disable the option to save the image directly.

link|improve this answer
feedback

img is an html tag for a reason therfore it should be used. For referncing or to illustrate things, people e.g : in articles

Also if the image has a meaning or has to be clickable a img is better than a css background, all other situation, i think, a css background can be used.

Although, it is a subject that needs to be discussed over and over.

Web Student form Paris, France

link|improve this answer
feedback

Just to throw a spanner in the works - i'm of the opinion that you should never use the img tag. HTML was meant for content, not visual style. all the images on your page should come from the CSS, leaving your HTML code pure. (even if it does take a bit longer to build)

link|improve this answer
5  
I agree with you with regard to images that serve as page decorations, but surely some images are content: photographs in a news article, or diagrams in an academic article, etc. Those are part of the content, and probably warrant an IMG tag. – benzado Sep 18 '10 at 1:34
1  
an image is worth a thousand words.... – Leo Jan 17 '11 at 14:02
feedback

Your Answer

 
or
required, but never shown

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