Definition:
In CSS the selector is the element or item that the CSS will be applied to.
Pronunciation: suh lehk tur
Examples:
p { color: #f00; }
The "p" is the selector, indicating all paragraphs.
html, body { color: #000; }
The "html, body" is the selector, indicating both the html and body tags.

