/* All p elements are red */
p {
color: red;
}
/* All elements with the attribute
class="selected" are blue */
.selected {
color: blue;
}/* All p elements */
p {}
/* All elements with the attribute
class="selected" */
.selected {}
/* the element with the attribute
id="top-choice" */
#top-choice {}
/* all h1 tags in a header*/
header h1 {}
/* all a, em and elements
with the class="cat"*/
a, em, .cat {}