这张图片是在我的网页上生成的?

时间:2016-01-22 18:17:27

标签: javascript html css

我无法在博客页面(http://jareds94-wine.blogspot.com)上找出链接图片的来源。使用Google Chrome的检查功能我可以看到它与hentry ::之前有关但它不是来自CSS所以它必须来自javascript文件吗?当我尝试将其更改为另一张图片时,任何帮助都会非常感激。

2 个答案:

答案 0 :(得分:1)

它不是位图图像,而是来自字体awesome toolkit的字符

.hentry:before {
    content: "\f0c1";
    z-index: 2;
    font-family: FontAwesome;
}

此处\f0c1与字体中的字符相关,后者呈现为链接

答案 1 :(得分:1)

“Image”实际上只是FontAwesome提供的一个字形。 它是由你的css生成的:

.hentry:before {
content: "\f0c1";
z-index: 2;
font-family: FontAwesome;
}