LMAO!!!! That's really sucks for the search-this.com peeps!
Anywho ... the
Global White Space Reset is basically just the use of the universal identifier - * - in the
CSS to apply certain properties to ALL elements.
So ... something like
Code:
* {
margin: 0;
padding: 0;
}
like BGarner showed you will remove all margins and padding from every element you use in your document. And then you can specifically put what you want.
The problem comes with the submit button of a form. You'll notice that every platform/OS/browser has there own default submit button style. Most have the really plain and ugly looking
ugly-button.jpg
well ... the code above will remove the shaded look of the button and there is absolutely no way to return to that for using
CSS.
Hopefully the link will come back online soon 'cause my explanation just doesn't do it justice

but it's the jist of it.