我在我的网站上使用了Ubuntu字体,当我这样做时 Opera 不会呈现页面:
html {
font-family: 'Ubuntu', sans-serif;
}
所以我必须做 css 媒体查询:
/*Chrome*/
@media not all and (-webkit-min-device-pixel-ratio:0) {
html,
button,
input,
select,
textarea {
font-family: 'Ubuntu',sans-serif;
}
}
/*Safari*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
html,
button,
input,
select,
textarea {
font-family: 'Ubuntu',sans-serif;
}
}
/*Opera*/
@media not screen and (1) {
html,
button,
input,
select,
textarea {
font-family: sans-serif;
}
}
问题是现在我不知道如何为 Firefox 实现这个。搜索互联网并没有给我答案。
有任何想法吗?
亲切的问候。