Css Firefox视网膜支持背景图像(mediaqueries)

Css Firefox视网膜支持背景图像(mediaqueries),css,firefox,retina,pixel-ratio,Css,Firefox,Retina,Pixel Ratio,我使用mediaqueries开发了几个网站,让它们做好准备。 在firefox上,我现在看到所有的背景图像(由mediaqueries管理)都是模糊的,不适合视网膜 这正常吗?为什么firefox还不支持mediaqueries的像素比例 例: 感谢您的帮助。Firefox确实支持带前缀的像素比率媒体查询: @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixe

我使用mediaqueries开发了几个网站,让它们做好准备。 在firefox上,我现在看到所有的背景图像(由mediaqueries管理)都是模糊的,不适合视网膜

这正常吗?为什么firefox还不支持mediaqueries的像素比例

例:


感谢您的帮助。

Firefox确实支持带前缀的像素比率媒体查询:

@media only screen and (-webkit-min-device-pixel-ratio: 2), 
only screen and (min-device-pixel-ratio: 2) { ... }