The Universal Selector and Forms
Remember the one about using the universal selector to set margins and padding of all elements to zero? Remember the bit about having problems when using the universal selector when the page contained forms? Well, it would be nice to have a quick solution so we could be on our merry way. Speaking of quick solutions…
My Quick Solution
I copied the stylesheet, forms.css, embedded in Firefox, keeping only any references to
margins or padding. Then an @import call was applied to the beginning of my
regular stylesheet.
@import url("forms.css");
Download forms.css (1781 bytes).

Comments
Now this is useful. Many thanks.
Posted by: jazzle | March 31, 2006 1:11 PM