Reputation: 336
I am having the following 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;
}
And its my HTML Page
<html>
<body>
<div id="content">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server"/>
</div>
If the content of body is small white spaces are added like in the above image(white spaces added in the red mark). How can I remove that? Any help?
Upvotes: 1
Views: 110