본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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