CSS Image-Resolution Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

The ‘image-resolution’ property is introduced to determine the correct resolution of images.

Syntax

image-resolution: [value];

Possible values

  • normal
  • auto
  • [dpi]

Initial Value

normal

Applies To

Replace elements

Inherited

Yes

Media

Visual

Example

.class {
  image-resolution: 300dpi  ;
}


View All CSS Properties