我想使用的字體源代碼臨在網頁上,沿着在其specimen page可見華麗的箭頭。樣式化的Unicode箭頭顯示不與谷歌網頁字體的字體
我包括使用谷歌的字體,它沒有列出對its respective page的箭頭我的網頁上的字體。但是,如果您從樣本頁面或htmlarrows.com中複製/粘貼一些箭頭,它們會以我期望的方式呈現。
當我使用的字體作爲谷歌的字體告訴我用它在我的網頁,所有的其他文字變得源代碼臨但箭頭回到默認的系統默認字體(宋體對我來說)。
下面是一個例子:
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
.container {
border-collapse: collapse;
}
td {
font-size: 96px;
}
td, th {
border: 0.1rem solid #c3c3c3;
padding: 0.5rem;
}
.row-sans-serif {
font-family: sans-serif;
}
.row-source-code-pro {
font-family: 'Source Code Pro', sans-serif;
}
<table class="container">
<thead>
<tr>
<th>font-family</th>
<th>A</th>
<th>Left</th>
<th>Right</th>
</tr>
</thead>
<tbody>
<tr class="row-sans-serif">
<th>sans-serif</th>
<td>A</td>
<td>←</td>
<td>→</td>
</tr>
<tr class="row-source-code-pro">
<th>Source Code Pro</th>
<td>A</td>
<td>←</td>
<td>→</td>
</tr>
</tbody>
</table>
當我的字體添加到我的谷歌字體網站捆綁它可以讓我導入Latin
版本或Latin Extended
版本,切換到擴展版本似乎並沒有改變我的用例。
我試圖改變我如何導入字體從@import
到<link>
,我試圖改變我如何引用Unicode字符到←
或←
,似乎沒有這樣的伎倆。