google.com.tw 中文字型變成簡宋體
這兩天就有覺得用 Firefox 看 Google 網頁字型怪怪的,我還以為是我瀏覽器設定的問題,看了 Moztw 這篇討論後才知道是 Google 的 CSS 將 font-family 設為 arial,simsun。
用 IE 和 Opera 的人不會有問題,詳細的原因可以參考 Moztw 的討論內容。
解決這個問題可以使用 Stylish 套件,或是修改 userContent.css 增加一個規則如下:
/*
* 修正Google中文字型
*/
@-moz-document domain("www.google.com.tw"){
body,td,div,p,a {
font-family: Arial,新細明體 !important;
}
}
powered by performancing firefox
