我试图摆脱破碎的图像图标。我发现了一个适用于chrome和firefox的解决方案。当我在IE中打开页面时没有任何反应。
任何人都可以帮助我吗?这是一个jsfiddle。
img { position: relative; }
/* style this to fit your needs */
/* and remove [alt] to apply to all images*/
img:after {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #999;
content: attr(alt);
}
<img src="broken" alt="A broken image">`