DIV that will stretch to fit the whole width and height of the browser window ON CLICK code example
Example 1: how to set a div size to full screen
height: 100vh
Example 2: css window height
div {
height: 100vh;
}
Example 3: css window height
body, html {
height: 100%;
}
#right {
height: 100%;
}