Learn CSS Grid by Building a Magazine - Step 21

Tell us what’s happening:

Within your aside element, create two img elements, a blockquote element, and a third img element. Give the blockquote element a class set to image-quote.

### Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

<aside class="image-wrapper">
  <img>
  <img>
  <blockquote class="image-quote">
    <img>
  </blockquote>
</aside>


### Your browser information:

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0</code>

### Challenge Information:
Learn CSS Grid by Building a Magazine - Step 21
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-css-grid-by-building-a-magazine/step-21

Your blockquote is nesting an image tag. It should not nest any code, it should be empty.

2 Likes

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