Step 43 - New Responsive Web Design

Step 43

Now that you know it works, you can change the remaining article and p elements to match the first set. Start by adding the class item to the other article elements.

Hey guys I am really confused as to what is being required here.

Here is my code so far below

   <article>
            <p>Caramel Macchiato</p>
            <p>3.75</p>
        <item = "class">
          </article>

The error message I am getting back is “You should only have five .item elements.”

Help!

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

It helps if you provide a link to the challenge you are working on.

This is an orphaned attribute/value pair, and it is backwards. You need to add the class attribute to the opening article tag.

Learn Basic CSS by Building a Cafe Menu: Step 43 | freeCodeCamp.org

sorry guys its this one.

Can you start me off please? really stuck on this one.

///

<article ="item">
            <p>Caramel Macchiato</p>
            <p>3.75</p>
          </article>

///

this?

I cannot write the code for you, no.

This is not valid syntax.

A tag has a basic format that you have seen on the previous Steps:

<element attribute="value"> </element>

You cannot set the name of the element (article in this case) equal to some value.

got it thank you. theres no need to be curt though.

1 Like

I am sorry I came across as ‘curt’. It has been my experience that including lots of extra words in my replies that are unrelated to the issue with the code can confuse some users. Being direct and clear gets better results than being fluffing out my replies with lots of words.

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