Description
The element type selector matches elements with the corresponding element type name.
This selector has the form:
E {
properties
}
Examples
This example eliminates the margin from every h1
element in the document.
h1 {
margin:0;
}
Browser Support
Chrome | Firefox | IE | Safari | Opera |
---|---|---|---|---|
Miscellaneous Information
Defined In: | CSS1 |
---|