CSS Reset, how to start from the same base
Even if standards are set up browser don’t use the same standards style. For example the margin-bottom on a paragraph in IE hasn’t the same amount of pixel than in Firefox.
So to start on a fresh base we use CSS reset. Take off evrything and rebuild all the style you need. A comon technique is using the * selector:
*
{
margin:0;
padding:0;
}
This is very simple and reset pretty much everything that is set up originaly in the browser. Now if you want to get a more efficient and selective reset theire is some out there that can help you.



