I am trying this:
.main{
min-height: -moz-calc(100% -50px);
min-height: -webkit-calc(100% -50px);
min-height: calc(100% -50px);
background-color:#000;
color:white;
}
html{
height:100%;
}
<html>
<body style='height:100%;'>
<header style='height:50px;background-color:#0e0'></header>
<div class="main">ok</div>
</body>
</html>
But it doesn't work
I want my div to go to the bottom of screen minus the header that is 50px
Thanks