Learn Intermediate CSS by Building a Picasso Painting - Step 60

Tell us what’s happening:
I think I got everything but I don’t know why is not passing
I got:

  • 3 divs with in the guitar element
  • first 2 with class=“guitar”
  • one “right” one “left”
  • third "neck "

Within the guitar element, create three div elements. Give the first two a class value of guitar. Then give the first an id of guitar-left, and the second an id of guitar-right. Add an id to the third div with the value guitar-neck.

The third div should not have the guitar class.

Your code so far

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

<div id="guitar">
           <div class="triangle"></div>
<div class="guitar" id="guitar-left"></div>
          <div class="guitar" id="guitar-right"></div>
          <div id="guitar-neck"></div>
</div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

Challenge: Learn Intermediate CSS by Building a Picasso Painting - Step 60

Link to the challenge:

I see 4 divs inside the main #guitar div
(you only need the 3 guitar ones)

1 Like

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