Step 60 of Learn Basic CSS by Building a Cafe Menu

Hello everybody,
I’m sorry if my English is a bite approximate.
I have a problem to valid the step 60 of “Learn Basic CSS by Building a Cafe Menu”.
I think I put tne correct answer as below:
.established{
font-style : italic;
}
But the answer is always the same
Sorry, your code does not pass

That’s why I try my luck on this forum…
Thank you for your help
Audrey!

Welcome to the community @PERRIN33700 !

Your English is fine! No worries about us not understanding.

Your code looks correct!

Could you please post all complete code using the Help that appears after three unsuccessful attempts at any step in Responsive Web Design?

image

It this way, the community is able to view the code and offer direct and correct guidance to you.

Sometimes, the problem is not within the immediate code.

As well, you may try the following because the code looks good.

  • Reset step

  • Refresh page (F5)

  • Some browser extensions, such as ad-blockers and dark mode extensions can interfere with the tests.

  • If you are having problems, recommendation is to disable extensions that modify the content or layout of pages, while taking the course.

    • Try a different browser.

If you still require help, please post on this post to ask for more help?

Keep up the good progress!

1 Like

body {
background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
.established{
font-style : italic;
}
here comes the answer : check your code!

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

.menu {
width: 80%;
background-color: burlywood;
margin-left: auto;
margin-right: auto;
padding: 20px;
max-width: 500px;
}

h1, h2 {
font-family: Impact, serif;
}

.item p {
display: inline-block;
}

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

.price {
text-align: right;
width: 25%
}

Thank you very much for your quick answer!
here is the printscreen

I tried a different browser… (i swept from google chrome to microsoft
edge)

I don’t understand why it blocks again…
thanks again

missing closing bracket for the body add a closing }

I am sorry for the misunderstanding!

I only wanted the let you see how to enter the .established selector and code.

Please remove it from the body element and make it one of its own @PERRIN33700 ?

You are doing great!

Keep up the good progress!

1 Like

It’s now resolved!!
I’ve just forgotten to close the closing bracket for the body paragraph!!
thank you so much for having helped me!!
see you !
yours sincerely!

1 Like

oh thank you so much!
you have resolved the problem!!
i didn’t see it. now i can go on thanks to you!!

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