html – 内容url在Firefox中不工作[已关闭]

前端之家收集整理的这篇文章主要介绍了html – 内容url在Firefox中不工作[已关闭]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的CSS文件是:
#name_wrong_img
        {
           width:43px;
           height:29px;
        }

这是我的HTML代码

<img id="name_wrong_img" src="wrong.jpg" />

上述代码在Firefox和Chrome中均可正常工作。

#name_wrong_img
        {
           content:url(wrong.jpg);
           width:43px;
           height:29px;
        } 

         <img id="name_wrong_img"  />

这在Chrome中运行良好。但不是在Firefox。这是什么问题?

解决方法

Firefox不支持内容属性,与Chrome – img元素和/或源是图像时一样。

< IMG>表示内容图像。如果你使用它,它应该有一个src和一个alt。

the specification

The src attribute must be present,and must contain a valid non-empty URL potentially surrounded by spaces referencing a non-interactive,optionally animated,image resource that is neither paged nor scripted.

原文链接:https://www.f2er.com/html/232899.html

猜你在找的HTML相关文章