平滑的firefox背景gardient

问题描述 投票:0回答:1

我注意到,与 Chromium 相比,Firefox 中的背景渐变渲染得不太平滑。

火狐: enter image description here

铬: enter image description here

Firefox 使用更多“伪影”渲染渐变,而不是均匀的颜色褪色。 有没有一种方法可以平滑这一点,使结果看起来和铬一样好?

body{
    background-color: #2e3236;
    background-image: radial-gradient(circle, #4e505298 0, rgba(35, 40, 46, .5) 15%, #101418 95%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

css firefox background-image gradient chromium
1个回答
0
投票

找到修复方法:

  • 转到:关于:配置
  • 查找:“gfx.webrender.dcomp-win.enabled”
  • 禁用该选项 - 将其设置为“false”
  • 重新启动火狐浏览器

https://i.imgur.com/jPUYK7b.png

© www.soinside.com 2019 - 2024. All rights reserved.