Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

How i show cross image like crome and ie in my firefox when image not show

more options

if some image not show in my web page crome and ie show cross icon there how can i use that in my firefox

if some image not show in my web page crome and ie show cross icon there how can i use that in my firefox

Всички отговори (3)

more options

<img src="../images/dragonfly.gif" alt="[dragonfly missing]" title="Dragonfly art by ideveloper">

alt is used if the image is not found.

title is what shows when you move cursor over the image.\


Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.

Променено на от David McRitchie

more options

thanks but when we not provie alt and title to a image

more options

My reply to your other post was lost when that thread was locked. (Insert sad face here.)

If your page is rendering in Quirks mode, then Firefox will display a placeholder. It does not natively do that in Standards mode, but you can force it with a user style (see, e.g., the July 19th reply in this thread: base64 - CSS transparent background image using "data:" - Stack Overflow).

Or, if you want to use a script solution (e.g., Greasemonkey userscript), you can identify the missing images with this:


var missingimgs=document.querySelectorAll("img:-moz-broken");

Or maybe there's an add-on??