Easiest:
html,_x000D_
body {_x000D_
height: 100%;_x000D_
min-height: 100%;_x000D_
}_x000D_
body {_x000D_
position: relative;_x000D_
background: purple;_x000D_
margin: 0;_x000D_
padding: 0;_x000D_
}_x000D_
.fullheight {_x000D_
display: block;_x000D_
position: relative;_x000D_
background: red;_x000D_
height: 100%;_x000D_
width: 300px;_x000D_
}
_x000D_
<html class="">_x000D_
_x000D_
<body>_x000D_
<div class="fullheight">_x000D_
This is full height._x000D_
</div>_x000D_
</body>_x000D_
_x000D_
</html>
_x000D_