我有以下CSS声明:

body {font-family: Verdana, Tahoma, "Trebuchet MS", "DejuVu Sans", "Bitstream Vera Sans", sans-serif;

它不在页面上加载。我必须添加:
    <style>
body {font-family: Verdana, Tahoma, "Trebuchet MS", "DejuVu Sans", "Bitstream Vera Sans", sans-serif;}
</style>

使用HTML使其正常工作...在chrome和safari中是正确的...这很奇怪,您认为吗?

请注意,所有其他CSS均正常工作...

最佳答案

您是否尝试选择以下内容?

body, body * {
    font-family: Verdana, Tahoma, "Trebuchet MS", "DejuVu Sans", "Bitstream Vera Sans", sans-serif;
} /* this affects every element in the body and the body itself */

/* OR just */
* {
    font-family: Verdana, Tahoma, "Trebuchet MS", "DejuVu Sans", "Bitstream Vera Sans", sans-serif;
} /* this affects every element */

这是您可以使用CSS3进行的操作:
http://www.css3.info/preview/web-fonts-with-font-face/

关于css - 字体家族无法加载?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14379788/

10-12 13:23