How to hide image broken Icon using only CSS/HTML?

前端 未结 17 1817
不思量自难忘°
不思量自难忘° 2020-11-27 09:14

How can I hide the broken image icon? Example: \"Example\"

I have an image with error src:

17条回答
  •  甜味超标
    2020-11-27 09:52

    I think the easiest way is to hide the broken image icon by the text-indent property.

    img {
        text-indent: -10000px
    }
    

    Obviously it doesn't work if you want to see the "alt" attribute.

提交回复
热议问题