Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Learn More

The "alt tag" never appears for the pictures!!!??

  • 2 одговорa
  • 7 има овај проблем
  • 4 прегледа
  • Последњи одговор послао mazioon

more options

I am a web-designer, and whenever i trying to use the alt tag for the pictures it never appears. The "alt tag" is a part of the HTML language, and the one writes it to make sure that the visitor of the site will see or understand the content of the pics, even if he has a very bad connection. like so: Every thing goes right with the width or the height, but when it comes with the "alt" it never appears. I tried it on IE and Opera, and it works. Plz if you know how can i solve this problem send me to der.dolmetscher@yahoo.com IT'S URGENT alt tag doesn't work http://www.w3schools.com/html/tryit.asp?filename=tryhtml_images2 I attached a link for "W3SCHOOL" put ur cursor over any pic and you'll find no writing

'''I am a web-designer''', and whenever i trying to use the '''alt tag''' for the pictures it never appears. ''The "alt tag" is a part of the HTML language'', and the one writes it to make sure that the visitor of the site will see or understand the content of the pics, even if he has a very bad connection. like so: <img src="'''the image'''" alt="'''the name or the theme of the pic'' /> Every thing goes right with the width or the height, but when it comes with the "alt" it never appears. I tried it on IE and Opera, and it works. Plz if you know how can i solve this problem send me to der.dolmetscher@yahoo.com IT'S URGENT [http://the alt tag doesn't work http://www.w3schools.com/html/tryit.asp?filename=tryhtml_images2] '''''I attached a link for "W3SCHOOL" put ur cursor over any pic and you'll find no writing'''''

Изабрано решење

Alt is not for tooltips, that is misbehavior from Internet Explorer. To show a tooltip you must use the title attribute. In fact, in order to create a truly web standards compliant webpages, you must specify both. Alt is shown if there is no image available, title is for the tooltip.
See https://developer.mozilla.org/en/Mozilla_Web_Developer_FAQ

USE: alt="Google Chrome" width="33" height="32" title="my tooltip"
Прочитајте овај одговор са објашњењем 👍 1

Сви одговори (2)

more options

Одабрано решење

Alt is not for tooltips, that is misbehavior from Internet Explorer. To show a tooltip you must use the title attribute. In fact, in order to create a truly web standards compliant webpages, you must specify both. Alt is shown if there is no image available, title is for the tooltip.
See https://developer.mozilla.org/en/Mozilla_Web_Developer_FAQ

USE: alt="Google Chrome" width="33" height="32" title="my tooltip"
more options

Thanksss it helped alot!!!