CSS: type selector (tag name)

By Xah Lee. Date: . Last updated: .

Match Any Tag (Universal Selector)

*

Match any tag name. [see HTML: Tags]

/* make everything red */
* {color:red;}

Match Tag name (Type Selector)

tag

Match a specific tag name.

/* make all paragraphs red */
p {color:red;}

CSS, Selectors