Can anyone explain me what does this sentence mean? only the sentence in bold letters . It's step 38 in cafe menu

"The p elements are nested in an article element with the class attribute of item. You can style all the p elements nested anywhere in elements with a class named item like this:

.item p { }

Using the above selector, add a display property with value inline-block so the p elements behave more like inline elements."

I did that step right. But I want to know what does that sentence mean?

To nest something is to put it inside of something. So the sentence is saying that the p elements are inside of an article element and the article element has a class of item.

1 Like

Thank you so much! :heart:

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