Within my program, users are able to reduce the size of a specific component. I utilize transform: scale() in order to accomplish this.
I have found that I am able to produce clearer images by incorporating the following:
-webkit-backface-visibility: hidden;
-ms-transform: translateZ(0);
-webkit-transform: translateZ(0);
transform: translateZ(0);
Unfortunately, this method does not work for divs containing background-images. These images continue to appear blurry.
Is there a solution to this issue? (Please refrain from suggesting that I avoid using scale)