Responsive Web Design Beta - Learn CSS by building a cafe menu

Hi,
I can’t pass Step 52 from Learn Basic CSS by building a Cafe menu.

I am using this code
.flavor .dessert {
text-align: left;
width: 75%;
}

and I get this error all the time
Try again. This might help:

You should add the .dessert selector to your .flavor selector.

Hi,

I think a comma between the 2 classes is missing!

3 Likes

Yes, I have just figured out. Thank you for your help

oh, thank you.
i tried a lot but i did not work when i saw your comment and i added a comma the problem were solved. kissing_heart heart_eyes smiling_face_with_three_hearts
:smiling_face_with_three_hearts: :heart_eyes: :kissing_heart:

hello, i still cant get it right. how to fix that, thanks in advance

.flavor dessert {
  text-align: left;
  width: 75%;
}

Test : Sorry, your code does not pass. Keep trying.

Hint : You should add the .dessert selector to your .flavor selector.


just figure it out by myselft

.flavor , .dessert{
  text-align: left;
  width: 75%;
}

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.