问题描述
我有这个在我的CSS:
I have this in my CSS:
.like-counter span, .entry-content h2 {
color: #444;
font-family: Bitstream Charter, "Droid Serif", Gerogia, serif;
font-weight: bold;
}
在我的电脑,我看到了serif字体。如果我删除了第一个,然后我看到了Droid的衬线字体。我认为这种字体是Android设备的默认字体。
In my computer, I see a serif font. If I remove the first one, then I see the Droid Serif font. I thought this font was a default font in Android devices.
但是,当我打开网站我的Android手机上。我仍然看到德罗伊德桑。
But when I open the site on my Android phone. I'm still seeing Droid Sans.
什么引起的?
编辑:
我发现,当我在Android的默认浏览器显示页面的问题只发生。在Firefox中,我可以看到Droid的衬线字体(怪)。
I discovered that the problem only happens when I display the page in Android's default browser. In Firefox, I can see the Droid Serif font (strange).
推荐答案
而不是猜测默认的字体,你只需要使用普通的衬
字体:
Instead of guessing the default fonts, you can just use the generic serif
font:
font-family: serif;
衬
将成为浏览器的默认serif字体。
serif
will be the browser's default serif font.
这篇关于分配的Droid Serif字体到一个HTML元素,但我的Android手机仍然显示德罗伊德桑?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!