I have been playing with CSS height property for a while, but I still can't find a solution.
This is my CSS:
html{
    height: 100%;
}
body{
    margin:0px; 
    padding:0px; 
    min-height:100%;
}
#container{
    position: relative;
    padding:40px;
    margin-top:2%;
    background-color:rgba(0, 0, 0, 0.7);
    margin-bottom:2%;
    height:auto;
}
Is there a way to fix this using CSS or may I use a javascript function?
 
     
    