Reputation: 1807
There is some whitespace to the left of the header. How can i get rid of this?
.h {
background: url('../Content/images/headlogo.png') no-repeat center;
display: block;
height: 93px;
background-color: #D60024;
}
I want it to stretch from the beginning to the end.
Upvotes: 0
Views: 58
Reputation: 7217
The easiest way to reset styles is to set the margin and padding on all elements to zero
CSS Reset looks like this:
*{
margin:0;
padding:0;
}
Upvotes: 0
Reputation: 5211
body{
margin: 0;
padding: 0;
}
.h {
display: block;
height: 93px;
background-color: #D60024;
}
Upvotes: 0
Reputation: 2193
This is either the margin or the padding for the body or the whole html document, either set html, body {maring:0; padding:0}
or use a css reset like Eric Meyer's.
Upvotes: 0