我使用的是流星的框架,並在我的main.scss
文件中的以下內容:@字體面渲染宋體
@font-face {
font-family: 'GrandHotel-Regular';
src: url('GrandHotel-Regular.eot');
src: url('GrandHotel-Regular.woff2') format('woff2'),
url('GrandHotel-Regular.woff') format('woff'),
url('GrandHotel-Regular.ttf') format('truetype'),
url('GrandHotel-Regular.svg#GrandHotel-Regular') format('svg'),
url('GrandHotel-Regular.eot?#iefix') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
h1 {
font-family: 'GrandHotel-Regular';
}
這不是工作,當我檢查選擇的字體,家庭是GrandHotel-Regular
就像它應該是,但控制檯說它呈現爲時代新羅馬。
我在Ubuntu上使用Chrome,它的舊版本無法再更新,因爲我的筆記本電腦太舊了,但是我不認爲這是導致問題的原因,因爲像這樣的東西對我來說很合適以往。
可能會出現什麼問題?
其他問題,像這樣的: Font coming out as Times New Roman in Older Browsers
或者這一個: Font proxima_novalight is rendered as Times New Roman
都沒有解決同樣的問題。
我很笨。哈。我不敢相信我沒有聽到。 – blaineh