使用font-face嵌入字体作为超链接不起作用

时间:2016-03-23 18:12:41

标签: css hyperlink font-face

在网站上使用Liberation字体可以正常使用标准文本。但是我也想使用该字体作为我的文本链接字体,但使用以下代码它不会调用/使用该字体。

a:link {
color: #69f;
font-family: liberation_sansbold;
font-size: 18px;
font-style: normal;
font-weight: bolder;
font-variant: normal;
text-transform: uppercase;
text-decoration: none

}

这是我网站上的嵌入字体(正如我所说,它适用于regualr(非链接)文本)。

@font-face {
font-family: 'liberation_sansbold';
src: url('website.com/liberationsans-bold-webfont.eot');
src: url('website.com/liberationsans-bold-webfont.eot?#iefix')     format('embedded-opentype'),
     url('website.com/liberationsans-bold-webfont.woff2') format('woff2'),
     url('website.com/liberationsans-bold-webfont.woff') format('woff'),
     url('website.com/liberationsans-bold-webfont.ttf') format('truetype'),
     url('website.com/liberationsans-bold-webfont.svg#liberation_sansbold') format('svg');
font-weight: normal;
font-style: normal;

}

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

查看this answer - 大多数浏览器似乎限制了您可以应用于某些伪类的样式。我链接的答案适用于:link,但如果类似的限制适用于a,我也不会感到惊讶。尝试设置a:link样式,而不是vec - 我猜你可能希望你的字体可以用于所有类型的链接。