The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Type selector
Matches any element of the specified type.
![]() |
Syntax
E {...}
Parameters
- E
-
String that specifies the name of a document language element type.
Standards information
Remarks
A type selector matches every instance of the element type in the document tree.
Examples
The following style rule applies to all the h1 tags within the document.
<style>
h1 { color: teal; font-variant: small-caps; letter-spacing: 0.1em; }
</style>
Show:
