Hello! I am currently completing the CSS Setup and Selectors lesson and I am on Exercise 14 about chaining and specificity. I understand the basics of what is going on here, but I am a bit confused about one of the tasks.
Earlier, in a previous exercise, they showed us you could chain selectors by adding a class selector to a tag
For Example:
```h1.special {
}
But then in the next exercise it asked me to add a selector that targeted the “h5” element with the class “description”. So I wrote mine like this:
h5.description {
}
Which worked in the browser but it was marked red in the exercise. When I checked the code, it was supposed to be written like this:
.description h5 {
}
So my main question is this…What is the difference between the order here? Is there a specific reason it had to be written like this? Or could it be either way? Thanks in advance for the help!