Şu anda bakım nedeniyle sitemiz kısıtlı işlevsellik sunmaktadır. Mevcut makaleler sorununuzu çözmediyse ve bize soru sormak isterseniz Twitter’da @FirefoxSupport hesabından ve Reddit’teki /r/firefox subreddit'inden destek gönüllülerimize ulaşabilirsiniz.

Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Daha Fazlasını Öğren

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

Tüm Yanıtlar (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 tarafından tarihinde düzenlendi

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??