得到“没有属性‘REL’”尝试验证页面时在 favicon 标签上
当我尝试使用 W3C 验证服务 验证我的页面时,我收到此错误:
Error Line 13, Column 11: there is no attribute "REL"
<LINK REL="SHORTCUT ICON" HREF="favicon.ico" />
为什么会这样发生?
When I try to validate my page using the W3C validation service, I'm getting this error:
Error Line 13, Column 11: there is no attribute "REL"
<LINK REL="SHORTCUT ICON" HREF="favicon.ico" />
Why does this happen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我在网站上使用的代码:
根据 http://validator.w3.org,它可以工作并且有效/。
我认为您的代码的主要问题是您使用的是大写字母。请改用小写字母。
由于您的网站图标可能在很多页面上使用,我还建议您使用完整的地址,如上面的代码所示,这样您网站上的所有文件都可以找到该网站图标,无论它们位于哪个文件夹中。
This is the code I'm using on my site:
It works and is valid according to http://validator.w3.org/.
I think the main problem with your code is that you're using uppercase letters. Use lowercase letters instead.
Since your favicon probably is used on many pages, I also suggest you use the full adress, like in the code above, so that all files on your site can find the favicon no matter what folder they are in.
问题已解决
The problem was fixed with