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

I have a large table with a large number of entries corresponding to an equally large number of images. The requirement is to display an alt text for every image which could not be found on the server. The alt attribute of is working fine.

However, I am not able to position the alt text - cell padding, spacing, margins etc. which apply to the image do not seem to apply to the alt text.

It may be of relevance that we are using tables for the layout of the page.

Does anybody know a method to position the alt text?

share|improve this question

6 Answers

up vote 3 down vote accepted

img {

width: 100px;
height: 50px;
line-height: 50px;
text-align: center;

}

sets the alt vertical and horizontal align to middle.

share|improve this answer
1  
... even if the image does exist. – Álvaro G. Vicario Jul 31 '09 at 11:58
line-height moved the alt text while image positioning was not changed. Thanks :) – Crimson Aug 1 '09 at 5:20
doesn't work here... – Renanlf Dec 10 '12 at 17:31
Not working for me either in Chrome – allen213 Dec 14 '12 at 11:00

line-height on a parent element will affect the presentation of alt text.

share|improve this answer

Off the top of my head I would not use alt-text, but a floating div tag which could be applied programmatically to do the job. That way you have complete control of the layout, colour, positioning etc...

share|improve this answer

You cannot. No browser I'm aware of allows to style the representation of the alt attribute.

It looks more sensible to use a server side language (e.g. PHP) to compose the page rather than forcing each browser to request potentially non-existing images. This way you can just output an <img> tag or a regular paragraph depending on whether the picture exists.

You could also write a JavaScript function (attached to the onerror event of the <img> tag) that replaces it with a regular text.

share|improve this answer
Good suggestion mentioning onerror. – Jonathan Sampson Jul 31 '09 at 11:59
Is that not contravening the recommendation of including an Alt tag on images for acessibilty reasons (screen readers, etc)? – Paul Lydon Jul 31 '09 at 16:51
why have you decided so? please look further more into designing alt text, since you are simply WRONG. – Dementic Nov 30 '12 at 16:44
@Dementic - Sorry, I can't see your answer where you prove you can style an HTML element that's not designed for presentation. – Álvaro G. Vicario Dec 3 '12 at 8:07

Did you try to apply padding or margin to the img itself and not to the table-cell? The CSS you use on your IMG Element is also applied to the alt-text of the image. So if you set a

img { padding-left:30px; }

your alt-text is also getting pushed to the right by 30px (depending on text-align and other stuff). You may also want to position:relative the img or vertical-align it with a neighbor-cell (the relation is important) or just something similar like float but take care of is because it will drag the image out of the textflow where it loses the layout-aspekt of parent-to-child relations. There is a nice resource for CSS Styles. I don't think you need anythink like Javascript (jQuery) or something like that.

share|improve this answer

If you want the image to be top-left aligned but the alt text centered this won't work, but if both the image and alt text should be aligned centered:

Try leaving out the height and width attributes in the image (if you're including them right now). That should render a bounding box only as big as necessary for the alt text, which can be center aligned vertically and text-aligned middle. Depending on what you want your layout to look like you can fiddle around with it until both the alt text and image looks decent. That's about the best you can do, really.

share|improve this answer

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.