screen.width and screen.availwidth difference in javascript

后端 未结 2 1429
夕颜
夕颜 2020-12-17 14:42

What is the difference between screen.width and screen.availwidth in JavaScript?

On my system both are the same!

2条回答
  •  情歌与酒
    2020-12-17 15:05

    • window.screen.width -> Returns the width of the screen.

    • window.screen.availWidth -> Returns the amount of horizontal space in pixels available to the window.

    It is best to use screen.availWidth for the exact size available for our component example.

提交回复
热议问题