Get the total width of your screen:
let width = screen.width;
Try it Yourself »
More "Try it Yourself" examples below.
The width
property returns the total width of the user's screen.
The width
property returns width in pixels.
The width
property is read-only.
Use the height property to get the total height of the user's screen.
screen.width
Type | Description |
A number | The total width of the user's screen in pixels. |
All screen properties:
let text = "Total width/height: " + screen.width + "*" + screen.height + "<br>" +
"Available width/height: " + screen.availWidth + "*" + screen.availHeight + "<br>" +
"Color depth: " + screen.colorDepth + "<br>" +
"Color resolution: " + screen.pixelDepth;
Try it Yourself »
screen.width
is supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!