vote up 1 vote down star
1

What's the "correct" semantic way to specify image height and width? In CSS...

width:15px;

or inline...

<img width="15"

?

CSS seems like the right place to put visual information. On the other hand, few would argue that image "src" should not be specified as an attribute and the height/width seem as tied to the binary image data as the "src" is.

(Yes, I realize from a technical, end-user perspective this really doesn't matter.)

flag

67% accept rate

5 Answers

vote up 5 vote down check

It should be defined inline. If you are using the img tag, that image should have semantic value to the content, which is why the alt attribute is required for validation.

If the image is to be part of the layout or template, you should use a tag other than the img tag and assign the image as a CSS background to the element. In this case, the image has no semantic meaning and therefore doesn't require the alt attribute. I'm fairly certain that most screen readers would not even know that a CSS image exists.

link|flag
Ah yes, excactly the right answer. Img tags are for information, css backgrounds are for layout. – Pim Jager Mar 12 at 20:45
vote up 3 vote down

If it's part of your site template, I'd place it in the CSS file.

If it's just on one page, it should be inline (or defined in a block of page-specific CSS at the top).

link|flag
vote up -1 vote down

Should always be in CSS, so you can resize the image with Javascript or other methods.

Also, having it in CSS allows you to supply different css files for IE6, ARPA, print, etc.

link|flag
You can manipulate the image with JavaScript either way, inline or CSS. – VirtuosiMedia Mar 12 at 20:23
vote up 0 vote down

I'd say CSS.

HTML is about content,
CSS is about presentation.

link|flag
vote up 0 vote down

My take is that it is part of the content,as you mentioned, much as the src attribute is too.

On the other hand there's no real need to specify width or height in either html or css, though it might help your page render faster.

link|flag

Your Answer

Get an OpenID
or

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