I have been looking at the CSS files for many websites like Facebook and Youtube.
In almost all of them I see this code:
* {
margin: 0;
padding: 0;
}
It is odd, as removing that block in chrome web developer tools doesn't affect the layout of the page.
What does this code mean, and when is it used and why?