私は次のcssを持っています
html {
margin: 0;
padding: 0;
position:relative;
}
body {
background-color: #fff;
border-top: solid 10px #000;
color: #333;
font-size: .85em;
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
margin: 0;
padding: 0;
}
#content{
background-color: #efeeef;
clear: both;
padding-bottom: 35px;
}
そして、その私のHTMLページ
<html>
<body>
<div id="content">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server"/>
</div>
body の内容が小さい場合は上の画像のように空白が追加されます(赤いマークに空白が追加されます)。どうすればそれを削除できますか? 何か助けはありますか?