CSS selectors

element, class, and descendant.

Element, class, and descendant. Paste CSS into the CSS pane.

Goal

Color the heading and a .city class.

Paste into the HTML pane:

<h1>Kiosks</h1>
<p class="city">Nairobi</p>
<p class="city">Mombasa</p>

Paste into the CSS pane:

h1 { font-family: sans-serif; }
.city { color: #8a5a12; }
h1 + p { font-weight: 600; }
p { margin: 0.25rem 0; }
.city { letter-spacing: 0.02em; }
body { font-family: sans-serif; }