この方法で、CSS でカスタム フォントを使用します。
@font-face {
font-family: 'Gabriola';
src: url('Gabriola.eot');
src: url('Gabriola.eot?#iefix') format('embedded-opentype'),
url('Gabriola.woff') format('woff'),
url('Gabriola.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.gabriola {
font-size: 20px;
line-height: 20px;
height: 20px;
background: red;
}
<div class="gabriola">Some texty text here</div>
各ブラウザは、このフォントを独自の方法でレンダリングし、このように上下に垂直にオフセットします
私は何を間違っていますか?ありがとう