Hot answers tagged alt-text
12
You just use ?
From the Markdown help for Images:
Images
...
Just like links, images work with reference syntax and titles:
This page is ![valid XHTML][checkmark].
[checkmark]: http://w3.org/Icons/valid-xhtml10
"What are you smiling at?"
...
and ...
11
Markdown actually supports both. This:

Turns into this:
<img src="http://sstatic.net/stackoverflow/img/logo.png" alt="Foo" title="Bar">
And looks like this:
9
In my opinion alt-text on images is less about the preview box and more about accessibility, and for that it's important to know how to use alt-text properly. So while I agree alt-texts should be used more, it's also important to know how to do it.
8
Alt text does not produce tooltips on Chrome (and maybe other standard compliant browsers).
And what is the problem? This is how its spelt out in the specifications. alt is alternative, where you provide a text alternative to the pictorial content you're trying to display for users who cannot view the image. The distinction between title and alt is ...
7
Remember that empty alt texts (ie. <img alt="" src="image.png" />) are acceptable if the alternative content is repeated immediately before or after the image, or if the image does not serve any important semantic purposes.
The most frustrating thing, however, is that by default the filler 'alt text' is filled in the alt text blank for images, and ...
5
I'd like to know how many people actually follow the request to enter an image description after uploading an image with the "image" button
There's 3586 posts with the default text, 21365 posts with the old default text, and 2335 posts with no alt text, out of 38284 posts with images, so about 29% fill it in
(Thanks Arjan for the old default text ...
2
What's happening here is the first image gets rendered like this:
<img src="http://i.stack.imgur.com/sUIH0.gif"
alt="figure demonstrate the use of ->">
At which point, the HTML sanitizer gets its grubby mitts on it, thinks the first > is the end of the tag and says, "HEY! This doesn't look right... No, no no no, this doesn't look right ...
2
I'm not an expert when it comes to advertising, but I'm nearly certain this is by design.
The idea is that users should have to click through to see what it's about because revenue is generated when they click. If the product or service is given away in a tooltip, then people will be less likely to click the ad in the first place, regardless of whether or ...
2
Adding the URL is, in my opinion, useless - it's a data most people don't care about, and those that do can access it via right-clicking the image and copying its URL, or examining the page source.
I agree that leaving the "alt text" text there is even worse, but if anything we need to encourage people to just write alt text properly. As far as screen ...
2
Well, alt and title are meant to serve different purposes. I'll leave the debate elsewhere.
If you want to describe an image in your post, you can just type it out in the content. If you want to have a text to tell the users what the image is (for whatever reason the image didn't load or still loading), it should be something shorter and more concise so ...
1
I don't see any way we can make this happen easily. I think that the cost to benefit ration here is massively high. Yes, it's good practice to make sites try to fit most user's needs, but some things are just not worth it. ANyone who has images turned off is likely to know that most sites will look very broken, and I doubt very many people browse this way. ...
Only top voted, non community-wiki answers of a minimum length are eligible