ウェブページでフォントソースコードを使用しようとしています。また、specimen pageの華やかな矢印が表示されています。Googleフォントウェブフォントでスタイル付きのユニコードの矢印が表示されない
Googleフォントを使用してページにフォントを含めていますが、矢印はits respective pageには表示されません。しかし、標本ページから矢印をコピー/ペーストするか、またはhtmlarrows.comと思っているように見えます。
Googleフォントでフォントを使用すると、他のテキストはすべてソースコードプロになりますが、矢印はデフォルトでシステムのデフォルトフォント(Arial for me)に戻ります。ここで
は一例です:
@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>
私はGoogleのフォントサイト上の私のバンドルにフォントを追加すると、それは切り替え、私はLatin
バージョンまたはLatin Extended
バージョンをインポートすることができます拡張バージョンへの変更は、私の使用事例では何も変わっていないようです。
@import
から
<link>
にフォントをインポートする方法を変更しようとした
、私は←
または←
にUnicode文字を参照する方法を変更しようとした、何もトリックを行うように思いません。