我需要在ASP.NET Core MVC项目中使用特定的字体,因此,在 css 文件中:
样式表:
@font-face {
font-family: "CustomFont";
src: url(css/Custom-VariableFont_slnt.ttf);
}
但我收到错误,字体路径无效
我尝试将其改变如下:
url(~/Custom-VariableFont_slnt.ttf);
或者
url(https://localhost:7267/css/Custom-VariableFont_slnt.ttf);
或者
url(../css/Custom-VariableFont_slnt.ttf);
但我总是得到同样的错误:
Failed to load resource: the server responded with a status of 404 ()