Learn Basic CSS by Building a Cafe Menu - Step 33

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

/* file: index.Ext.html */
body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
}

h1, h2, p {
  text-align: center;
}

.menu {
  width: 80%;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
}
h1, h2, p, flavour {
text-align: left;
}

    
/* file: styles.Ext.css */
body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
}

h1, h2, p {
  text-align: center;
}

.menu {
  width: 80%;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
}
h1, h2, p, flavour {
text-align: left;
}

    

Your mobile information:

SM-A115U - Android 10 - Android SDK 29

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 33

Link to the challenge:

Welcome to the community.

The step asks that a new .flavor selector be created to set the text-align property with a value of left.

It appears the .flavor was just added to another selector.

Once the .flavor selector is created and the property and value set, you should pass the step. Class selectors always have a dot before the property name.

Happy coding! :slight_smile:

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