Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131

Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131
Images are not sharp enough when they are scaled down – Code DPlugins

Images are not sharp enough when they are scaled down

.ct-image{
	image-rendering: -webkit-optimize-contrast;
}

Oxygen adding class to images by default “.ct-image”. To target all the images use img tag or .ct-image.

If you want to play with more options there are some couple of more settings:

image-rendering: auto;
image-rendering: crisp-edges;
image-rendering: pixelated;

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) */
Click to Copy