CSS - Crisp Images

PHOTO EMBED

Sun Aug 21 2022 22:57:12 GMT+0000 (Coordinated Universal Time)

Saved by @webcode #css

img {
	image-rendering: -moz-crisp-edges;
	/* Firefox */
	image-rendering: -o-crisp-edges;
	/* Opera */
	image-rendering: -webkit-optimize-contrast;
	/* Webkit (non-standard naming) */
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	/* IE (non-standard property) */
}
content_copyCOPY