nov*_*rmr 2 css safari fonts webkit font-face
出于某种原因,Safari在过渡期间加入了我的光@ font-face字体.
当您将鼠标悬停在产品图片上时,您可以看到safari在瞬间为文本添加粗体:
http://fine-grain-2.myshopify.com
这是我的@ font-face声明:
@font-face {
font-family: Avenir;
font-weight: normal;
font-style: normal;
src: url("AvenirLTStd-Medium.otf") format("opentype");
}
@font-face {
font-family: AvenirBold;
font-weight: normal;
font-style: normal;
src: url("AvenirLTStd-Black.otf") format("opentype");
}
@font-face {
font-family: AvenirLight;
font-weight: lighter;
font-style: normal;
src: url("AvenirLTStd-Light.otf") format("opentype");
}
Run Code Online (Sandbox Code Playgroud)
这是我在主CSS中声明font-family的地方:
body {
background: none repeat scroll 0 0 #999999;
font-family: AvenirLight;
font-weight: lighter;
}
Run Code Online (Sandbox Code Playgroud)