image-resolution
Quick Summary for image-resolution
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Code Usage for image-resolution
image-resolution: from-image; image-resolution: 300dpi; image-resolution: from-image 300dpi; image-resolution: 300dpi snap;  /* Global values */ image-resolution: inherit; image-resolution: initial; image-resolution: revert; image-resolution: unset; 
More Details for image-resolution

image-resolution

Experimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.

The image-resolution CSS property specifies the intrinsic resolution of all raster images used in or on the element. It affects content images such as replaced elements and generated content, and decorative images such as background-image images.

The image resolution is defined as the number of image pixels per unit length, e.g., pixels per inch. By default, CSS assumes a resolution of one image pixel per CSS px unit; however, the image-resolution property allows a different resolution to be specified.

Syntax

image-resolution: from-image; image-resolution: 300dpi; image-resolution: from-image 300dpi; image-resolution: 300dpi snap;  /* Global values */ image-resolution: inherit; image-resolution: initial; image-resolution: revert; image-resolution: unset; 

Values

<resolution>

Specifies the intrinsic resolution explicitly.

from-image

Uses the intrinsic resolution as specified by the image format. If the image does not specify its own resolution, the explicitly specified resolution is used (if given), else it defaults to 1dppx (1 image pixel per CSS px unit).

snap

If the snap keyword is provided, the computed resolution is the specified resolution rounded to the nearest value that would map one image pixel to an integer number of device pixels. If the resolution is taken from the image, then the used intrinsic resolution is the image's native resolution similarly adjusted.

Note: As vector formats such as SVG do not have an intrinsic resolution, this property has no effect on vector images.

Formal definition

Initial value1dppx
Applies toall elements
Inheritedyes
Computed valueas specified, except with <resolution> possibly altered by computed for 'snap' value
Animation typediscrete

Formal syntax

[ from-image || <resolution> ] && snap?

Examples

Setting a high dpi for print

When printing the document, use a higher resolution.

@media print {   .myimage {     image-resolution: 300dpi;   } } 

Use image resolution with fallback

Uses the resolution from the image. If the image does not have a resolution, use 300dpi rather than the default 1dppx.

.myimage {   image-resolution: from-image 300dpi; } 

Specifications

No specification found

No specification data found for css.properties.image-resolution.Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

No compatibility data found for css.properties.image-resolution.Check for problems with this page or contribute missing data to mdn/browser-compat-data.

See also

Other image-related CSS properties: object-fit, object-position, image-orientation, image-rendering. Chromium bug: 1086473.

Last modified: Aug 12, 2021, by MDN contributors

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote


James Clear
Random CSS Property

perspective()

The perspective() CSS function defines a transformation that sets the distance between the user and the z=0 plane, the perspective from which the viewer would be if the 2-dimensional interface were 3-dimensional. Its result is a <transform-function> data type.
perspective() css reference