我尝试使用Unicode通过css插入FontAwesome
图标,我的页面将其显示为文本。因此,如果房屋图标的Unicode为f015,则我的浏览器显示" / f015"而不是显示房子图标。
HTML标头包括:
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
CSS:
#MenuBarLink1 a:before {
position: absolute;
left: 1em;
padding: 0 1px;
font-family: FontAwesome;
content: "/f015";
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-transition-duration: 0.1s;
transition-duration: 0.1s;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
我想知道我是否需要做任何事情来声明font-family,除了在我的HTML标题中包含该链接。我已经下载了所有Font Awesome文件,但我只使用在线链接,因为我读的更好。
感谢您帮助新手! :)
答案 0 :(得分:1)
我认为你使用了错误的斜杠。使用,
content : '\f015';