Answers for "javascript style window height"

CSS
6

how to get the height of window in javascript

//get screen height of the device by using
window.innerHeight
//get screen width of the device by using
window.innerWidth
Posted by: Guest on July-02-2020
1

css window height

body, html {
  height: 100%;
}

#right {
  height: 100%;
}
Posted by: Guest on April-18-2020

Code answers related to "javascript style window height"

Browse Popular Code Answers by Language