Get the available height of your screen:
let height = screen.availHeight;
Try it Yourself »
More "Try it Yourself" examples below.
The availHeight
property returns the height of the user's screen.
The availHeight
property returns the height in pixels.
The availHeight
property returns the height minus interface features like the Windows Taskbar.
To get the width of the screen, use the availWidth property.
screen.availHeight
Type | Description |
A number | The height 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.availHeight
is supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!