听起来您需要在 CSS 中指定字体,可以通过这种方式完成(回退到无衬线字体):
body {
font-family: "MS PGothic", sans-serif;
}
但是,如果您有这么多 CSS 文件,则font-family
其中一个文件中的值会被覆盖,因此您可能希望使用该!important
值,如下所示:
body {
font-family: "MS PGothic", sans-serif !important;
}
这可以通过包含选择器来进一步改进input
,textarea
以便表单字段也使用此字体:
body, input, textarea {
font-family: "MS PGothic", sans-serif !important;
}
我们也可以使用日文字体名称,以防万一。最后,我建议指定看起来比 MS PGothic 更流畅的 Meiryo 字体,并且可以在 Windows Vista 及更高版本上使用。此外,应该包括 Mac 的字体,所以我认为日语页面的最佳 CSS 是这样的:
body, input, textarea {
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif !important;
}