Selectors are a way for you to “select” a particular element in your HTML code and style it according to your needs. There are multiple types of selectors available in CSS, if you want to learn more about them, here’s a helpful article:
As for your question, There’s no such thing as a flavor selector, what you need to use is a class selector. The above article would help you a lot with the challenge.
Do you remember the flavor class that you added in the HTML section? It would have look something like this: <element class="flavor">*content*</element>. The purpose of this is to give the element another name to be called by (the name being flavor). This is what the class attribute does (the the id attribute does the same, except that unlike the class attribute, the id attribute can only be used once.)
Now that we have established that , as you can see in the article above; when you are styling an HTML document, an element can be targeted and styled by calling its name. So the name could be the name of the element itself(h1) or the name of its class flavor.
What this step wants you to do is to target that specific p element, not by calling the name of the element, but by calling the name of its class instead which is flavor. To refer to this class in a CSS file, we use selectors: i.e. we select/say the name of an element. After selecting/saying the name of that element, we can apply styles to that specific element. If you want to select/call an element that also has the class of manju, you could do so by including the name of the element itself in the CSS file (element { }), or you could select/call the class instead (.manju {}) .
The latter is what the instructions is asking you to do. So select/call the element with the class of flavor and style that specific element.