這聽起來像你需要指定你的CSS的字體,這是可以做到這樣(回落爲sans-serif字體):
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;
}
感謝您的回答。現在我確定了。 – swemon