STEP 60 Intermediate CSS picasso painting

Tell us what’s happening:
They are asking for 3 different div tags to be nested within a guitar element, what is a guitar element??

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.

<div class=“guitar” id=“guitar-left”></div>
<div class=“guitar” id=“guitar-right></div>
<div id=“guitar-neck”></div>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15

Challenge: Step 60

Link to the challenge:

what is a guitar element??

<div id="guitar">
</div>

It is not a unique element, like <guitar></guitar>, but is just the element with that id. Since ids are unique there can only be one element with that name. It’s just a figure of speech.

Hello there, looks like you have forgotten a closing " on the second div’s id.

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