Hello friends!
I found so many people asking this question who were simply missing the comma. But I added the comma from the start and it’s still saying I need to add dessert selector to flavor selector. It’s gotta be something simple, just different then other people’s simple lol.
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;
}
.item p {
display: inline-block;
.dessert, .flavor {
text-align: left;
width: 75%;
}
I’ve also tried…
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;
}
.item p {
display: inline-block;
.flavor, .dessert {
text-align: left;
width: 75%;
}
…just in case it’s being picky
Thank you for any help you can provide
-M