让FireFox默认隐藏无效图片(broken image),显示红X(红叉)

前端开发人员在coding的时候,难免会遗漏掉这些细节。最好能够让Firefox别那么智能,正常显示出无效图片还是很重要的。


在Stylish里新建一个名称为:show_broken_images,没的话去装一个,然后


样式内容为:

@-moz-document url-prefix(http), url-prefix(file)
{
img:-moz-broken
{
-moz-force-broken-image-icon: 1 !important;
width: 24px;
height: 24px;
}
}


你可能感兴趣的:(开发,File,图片,firefox,important)