【发布时间】:2020-12-27 01:42:16
【问题描述】:
我有一个小问题。图像渲染不适用于 Firefox 中 div 的背景图像,但在 Chrome 中它可以正常工作。
如何在 Firefox 中也像素化背景?
<div id="loadingScreen" class="loadingScreen">
...
</div>
.loadingScreen{
position:fixed;
top:0;
left:0;
z-index:50;
width:100%;
height:100%;
background-color:#322007;
background-image:url("../assets/textures/gui/menu_background.png");
background-size:64px;
image-rendering:pixelated;
background-position:center;
}
【问题讨论】:
标签: html css google-chrome firefox background-image