CSS: type selector (tag name)

By Xah Lee. Date: . Last updated: .
tag-name

Match a tag name.

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