This paragraph will have the styles defined for the "highlight" class.
``` In the CSS, you would define the `.highlight` class like this: ```css .highlight { color: red; background-color: yellow; } ``` The benefit of using classes is that you can have the same HTML element, but present it differently depending on its class or ID. In CSS, a class selector is a name preceded by a full stop (`.`), and an ID selector is a name preceded by a hash character (`#`). read more >>