I have used this technique to made my div's height be 100%:
body, html {
height: 100%;
}
#myDiv {
height: 100%;
}
and everything is perfect on usual devices, however on screens with large resolutions(27 inch) it is not working properly, how can i fix that? thanks!