我为 div 设置了视网膜背景图像。它在 firefox 中正确显示,但在 chrome 中看起来更暗。如何解决此问题?参考小提琴
html
<div class="retina_img">
</div>
CSS
.retina_img
{
background: url("imageuploadimg.png") no-repeat scroll 0 50% / 100% 100% #FFFFFF;
background:-webkit-image-set( url('imageuploadimg.png') 1x,url('imageuploadimg@2x.png') 2x);
width: 142px;
height: 101px;
}