HTML DOM window devicePixelRatio property (original) (raw)
Last Updated : 12 Jul, 2022
The devicePixelRatio property returns the ratio of the resolution in physical pixels to the resolution in CSS pixels for the current device. In simpler terms, this property also tells the browser how many of the screen's actual pixels should be used to draw a single CSS pixel. This is a read-only property.
Syntax:
value = window.devicePixelRatio;
Return Value: returns a double-precision floating-point value indicating the ratio of the display's resolution in physical pixels to the resolution in CSS pixels.
Example: In this example, we will get the ratio using this property.
html `
window devicePixelRatio propertyGeeksforGeeks
HTML | window devicePixelRatio property
Click Here
`
Output:
Before Clicking Button:
After Clicking Button: At standard zoom devicePixelRatio comes out to be 1.25
Supported Browsers:
- Google Chrome 1 and above
- Edge 12 and above
- Firefox 18 and above
- Safari 3 and above
- Opera 11.1 and above
- Internet Explorer 11 and above