Description
The universal selector matches any element type.
This selector has the form:
* {
properties
}
Examples
This example eliminates the margin from every element in the document.
* {
margin:0;
}
Browser Support
Chrome | Firefox | IE | Safari | Opera |
---|---|---|---|---|
Miscellaneous Information
Defined In: | CSS2 |
---|