如何取代特定網頁中的字型系列 - Firefox 55.x.xx

如何取代特定網頁中的字型系列 - Firefox 55.x.xx

在 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');
} 

我的目標是讓它看起來像這樣 -"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 看起來又正常了:)

相關內容