在 Windows 10 上,ClearType 已關閉,網頁中的某些字體看起來很難看,例如 PayPal 網站中的字體"PayPal-Sans"
:
但"Arial"
或者"Tahoma"
看起來很優秀。是否可以"Arial"
在 Firefox 55.x.xx 中使用 CSS 或某些腳本將特定字體替換為其他類型?我嘗試了一些解決方案,但似乎在 Firefox 55 版本中它不再起作用。
這方法不起作用:
在./Profiles/some_profile.default/chrome/userContent.css
文件中:
@font-face {
font-family: 'PayPal-Sans';
src: local('Arial');
}
答案1
終於找到臨時解決方案了:)
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain(www.paypal.com) {
* {
font-family: "Arial" !important;
}
.moreIcon,
.vx_icon vx_icon-small,
.vx_icon-arrow-right-half-small,
.mer-notifications-nav-icon,
.mer-settings-nav-icon {
font-family: "paypal-vx-icons" !important;
}
span.caret,
a.secondaryButton,
.icon, .caret {
font-family: "consumer-icons" !important;
}
}
現在 PayPal 看起來又正常了:)