我有一个 myshopify 网站,我试图在使用中显示字体@font-face
.. 但由于某种原因,字体没有生效.. 这是我所拥有的:
资产文件夹中的字体文件
在 css 中使用 myshopify 资产 url:
@font-face {
font-family: 'LeagueGothicRegular';
src: url('{{ 'League_Gothic-webfont.eot' | asset_url }}');
src: url('{{ 'League_Gothic-webfont.eot?iefix' | asset_url }}') format('embedded-opentype'),
url({{ 'League_Gothic-webfont.woff' | asset_url }}) format('woff'),
url('{{ 'League_Gothic-webfont.ttf' | asset_url }}') format('truetype'),
url('{{ 'League_Gothic-webfont.svg#LeagueGothicRegular' | asset_url }}') format('svg');
font-weight: normal;
font-style: normal;
}
..
#top-menu a{
font-family: 'LeagueGothicRegular', sans-serif;
background-color: #fff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
color: #000000;
display: inline-block;
font-size: 1.97em;
line-height: 1;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
padding: 6px 18px;
padding-top: 8px;
text-decoration: none
}
有什么弹出来?谢谢你!