この質問と受け入れられた答えを参照して、私は同様のことを試みました。
.Content
{
position:absolute;
top:0;
left:0;
padding-top:75px;
width:inherit;
height:inherit;
}
.Header
{
position:absolute;
top:0;
left:0;
height:75px;
width:inherit;
background-color:Blue;
text-align:center;
}
<form id="form1" runat="server" style="width:100%;height:100%">
<div id="Content" class="Content">
<div id="Header" class="Header">
<h1 style="color:White">Report Portal</h1>
</div>
</div>
</form>
コンテンツ領域をページ全体に表示したいのですが、それ以上は必要ありません。ただし、上記のhtmlのWebページには垂直スクロールバーが表示されます。どうすれば修正できますか?