Hello, I’m stuck on step 51 of Learn Basic CSS by Building a Cafe Menu: Step 51
Could someone please help me?
The request for that step says:
Step 51
Something does not look right. You added the correctclass
attribute value to thep
element withDonut
as its text, but you have not defined a selector for it.
The CSS rule for the
flavor
class already sets the properties you want. Add thedessert
class as an additional selector for this CSS rule.
And then you have:
.flavor {
text-align: left;
width: 75%;
}
flavor
is the class (the dot in front makes it a class) the request is pointing you to. It wants you to create another one in the same line with the name desert
. Separate both with a coma.
Thank you so much!!!
thanks man!
it helped me a lot.
Thank you very much!
A comma followed by the next class is what solved my issue.
– removed by mod –
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.