Zeroing out margins paddings borders (Not working!)

I just read the tip from

that you can zero out default borders, margins and padding with this. which seemed pretty good idea. I tried but for some reason it didn’t work, IE still has its default border around image links, h4 tags has its margins. I’m not sure if it works in html5 documents…


html, body {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

it would appear you didn’t include IMG in your reset definitions

try:


html, body {
  margin: 0px;
  padding: 0px;
}
img {border: 0px;}

hope that helps