在网站中添加图标
是否有添加 favicon [GIF & ICO]
通过 CSS 或者我需要在每个 HTML 页面中添加标签?
Is there anyway to add favicon [GIF & ICO]
through CSS or I need to add the tag in every HTML pages ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
无法在 CSS 中定义 favicon。如果您想要可靠的行为,您应该使用 HTML 标签。
如果 HTML 中未定义图标,浏览器通常会自动查看
/favicon.ico
。在此处放置.ico
文件适用于所有浏览器,但这不适用于其他文件类型。The favicon can not be defined in CSS. If you want reliable behaviour, you should use the HTML tags.
Browsers will usually automatically look at
/favicon.ico
if an icon isn't defined in HTML. Putting an.ico
file here will work in all browsers, but this won't work for other file types.我不确定 CSS 中是否有图标,但如果您将图标放在站点的根文件夹中,浏览器将正确显示图标。 (作为 ICO 格式)
这里有很好的信息 http://en.wikipedia.org/wiki/Favicon< /a>
I am not sure about having the Icon in CSS but if you put the icon in the root folder of your site browsers will show the icon correctly. (As A ICO Format)
This has good information here http://en.wikipedia.org/wiki/Favicon
html 标签是实现此效果的可靠方法。值得注意的是,当前从 favicon.io 自动生成的标签有损坏的结束标签,因此您需要填写它们。此外,我建议添加一行以包含它们自动生成的 favicon.ico 文件的 href你也是。
截至 2024 年 1 月 30 日的网站图标网站截图
An html tag is a reliable way to achieve this effect. Of note, the current auto-generated tags from favicon.io have broken end tags, so you will need to fill them in. Additionally, I recommend adding an additional line to include the href for the favicon.ico file that they auto generate for you as well.
snip of favicon website as of 30JAN24