Click here to Skip to main content
15,900,466 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I cannot remove the left margin from my web page even with margin: 0; and padding: 0;

Source code

<!DOCTYPE html>


<title>Lorem






© Lorem Ipsum





body {
background-image: url(http://www.designbolts.com/wp-content/uploads/2012/12/White-Gradient-Squares-Seamless-Patterns-For-Website-Backgrounds.jpg);
}
footer {
background-color: rgba(0, 0, 0, 0.5);
position: fixed;
bottom: 0;
width: 100%;
padding:0;
margin:0;
}

What I have tried:

padding: 0;
margin: 0;

Even with these two assigned it won't let me remove the left margin.
Posted
Updated 6-Jan-18 18:58pm

1 solution

Try:
body {
  margin: 0;
}
because body has a default margin of 8px.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900