Answers for "html css set height to window"

CSS
1

javascript get image width and height

var img = new Image();
img.onload = function() {
  alert(this.width + 'x' + this.height);
}
img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';
Posted by: Guest on March-04-2020
1

css window height

body, html {
  height: 100%;
}

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

Browse Popular Code Answers by Language