Bite Size Standards - bitesTasty nuggets of web standards goodnessUsing the universal selector- April 28, 2006 The CSS universal selector, denoted by the asterisk (), selects any element in the document. Using it in combination with other CSS selectors can lead to some powerful results. I have listed two of my favorite techniques here. Global white space reset To control all my text spacing, I start off my CSS documents with this code, known as the "global whitespace reset": margin: 0; padding 0; This takes away all the spacing between and around elements at once, allowing me..http://bitesizestandards.com/bites/using-the-universal-selector |