Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 2 ответа
  • 7 имеют эту проблему
  • 15 просмотров
  • Последний ответ от 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!!!