Learn basic CSS by building a Cafe Menu - step 52

did not understand question. I tried everything but did not work.

" Something does not look right. You added the correct class attribute value to the p element with Donut as its text, but you have not defined a selector for it.

Since the flavor class selector already has the properties you want, just add the dessert class name to it. "

Please help me <3 .

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

}

You can add multiple selectors to a rule set. You have already done this in a previous step:

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

This is centering the text for h1, h2, and p elements. Notice what these elements are separated with in the selector list.

You want to add the .dessert class to the selector list for this rule set:

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

Use the same format you did for the h1, h2, p selector list.

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