U

Last updated on

The Universal Selector is the * in CSS. Literally the asterisk character. It is essentially a type selector that matches any type. Type meaning an HTML tag like <div>, <body>,<button>, or literally any of the others. A common use is in the universal reset, like this: * { margin: 0; padding: 0; } There are times when using the universal selector

Continue reading →