如何替换特定网页中的字体系列 - Firefox 55.x.xx

如何替换特定网页中的字体系列 - Firefox 55.x.xx

在 Windows 10 上,ClearType 处于关闭状态,网页中的某些字体看起来很丑陋,例如在 PayPal 网站中"PayPal-Sans"
在此处输入图片描述
但是"Arial"or"Tahoma"看起来很棒。在 Firefox 55.x.xx 中,是否可以"Arial"使用 CSS 或某些脚本将特定字体替换为 or 其他类型?我尝试了一些解决方案,但似乎在 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 看起来又正常了 :)

相关内容