@font-face
我的 css 中有四个这样的规则:
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 400;
src: url(fonts/Ubuntu-Regular.ttf) format('truetype');
}
文件结构如下:
/index.html
css/
...
fonts.css
fonts/
Ubuntu-Regular.ttf
使用浏览器时,我可以访问 urlcss/fonts/Ubuntu-Regular.ttf
并下载文件。但是,它不是由 css 加载的字体。我在滥用url()
吗?