Réponse

p {&:hover {color: orange}}

Colonne
Explication

In some CSS instructions, it's vital to not have a space between selectors (such as a pseudo class). Sass automatically adds a space, so in order to delete space, use ampersand

Question

Using nesting, make a paragraph with text that turns orange on hover

Thématique