I am working on a container with 100% height and it's functioning perfectly
My goal is to have the Client Content take up 80% of the container. I envision it to be like this
View Example Image
Below is the HTML and CSS for my page:
CSS
*
{
padding: 0;
margin: 0;
}
html, body
{
height: 100%;
}
#container
{
min-height: 99%;
border-color: #36A9E9;
border-width: thin;
border-style: solid;
width: 85%;
margin: 0 auto;
background-color: ThreeDFace;
}
* html #container
{
height: 100%;
}
#ClientContent
{
min-height: 80%;
border-color: #36A9E9;
border-width: thin;
border-style: solid;
width: 100%;
margin: 0 auto;
background-color: ThreeDFace;
}
HTML
<body>
<form id="container" runat="server">
<div id="ClientContent">
</div>
</form>
</body>
If you have any suggestions or ideas, please let me know!