Learn CSS Grid by Building a Magazine - Step 14

Tell us what’s happening:
Describe your issue in detail here.
I have the blockquote element after the 3 p elements and can’t tell what im doing wrong since everything look like it should be where it’s supposed to. maybe im missing something?
Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:105.0) Gecko/20100101 Firefox/105.0

Challenge: Learn CSS Grid by Building a Magazine - Step 14

Link to the challenge:

You didn’t put a backslash in the closing ‘hr’ tag.

1 Like

I am still getting the same error but thank you for pointing it out for me

Just fyi, backslash is not needed for self-closing tags.

1 Like

Please post your code in a code block like this:

```
Code here
```

1 Like
<p></p>
<p></p>
<p></p>
<blockquote>
  <hr>
  <p class='quote'>The entire curriculum should be a series of projects</p>
</blockquote>

Of course. I apologize. My mistake. :pensive:

Couple of issues.

1- they didn’t ask for the three p elements (you already have three paragraphs in the .text element already). So delete those
2- add the missing hr element (or just click check and see what the hint says about it)

3 Likes

Thank you so much for the help.

1 Like

/just in case if someone is stuck on step 14/


The entire curriculum should be a series of projects


``

Hi there, just wanted to make you aware: we don’t allow sharing of code solutions here for fCC challenges.

haha made exact same mistake))
Love the always helping community here!

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