A seemingly trivial problem.
I have a very basic page in Visual Studio 2010. It's got a master page...
<body>
<form id="form1" runat="server">
<div>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server" />
</div>
</form>
</body>
...with...
<div class="divStretch" />
...alone in the content.
CSS is:
body, form, html
{
background-color: Black;
height: 100%;
}
body
{
margin: auto;
}
.divStretch
{
background-color: Red;
height: 100%;
}
Now with the <div> tags around the ContentPlaceHolder, the whole page is black. That is, the content div doesn't show up. Without the <div> tags, red's everywhere and the height of the content div is about twice as high as the window height, causing a vertical scrollbar to appear.
All I'd like is for the content div to exactly fill the window.