Learn Intermediate CSS by Building a Picasso Painting - Step 50

Test: Below your black-character element, add two new div elements. These will be the shawl. Give both of them a class of blue . Then give the first one an id of blue-left , and the second an id of blue-right .

Hint: You should have two new div elements within your .characters element.

Your code so far

Picasso Painting
  <div id="black-character">
    
    <div id="black-hat"></div>
    <div id="gray-mask">
      <div class="eyes left"></div>
      <div class="eyes right"></div>
      
    </div>
      <div class="blue" id="blue-left"></div> 
      <div class="blue" id="blue-right"></div>

    <div id="white-paper">
      <i class="fas fa-music"></i>
      <i class="fas fa-music"></i>
      <i class="fas fa-music"></i>
      <i class="fas fa-music"></i>
    </div>

  </div>

</div>
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Picasso Painting</title>
    <link rel="stylesheet" href="./styles.css" />
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
  </head>
  <body>
    <div id="back-wall"></div>
    <div class="characters">
      <div id="offwhite-character">
        <div id="white-hat"></div>
        <div id="black-mask">
          <div class="eyes left"></div>
          <div class="eyes right"></div>
        </div>
        <div id="gray-instrument">
          <div class="black-dot"></div>
          <div class="black-dot"></div>
          <div class="black-dot"></div>
          <div class="black-dot"></div>
          <div class="black-dot"></div>
        </div>
        <div id="tan-table"></div>
      </div>
      
      <div id="black-character">
        
        <div id="black-hat"></div>
        <div id="gray-mask">
          <div class="eyes left"></div>
          <div class="eyes right"></div>
          
        </div>
          <div class="blue" id="blue-left"></div> 
          <div class="blue" id="blue-right"></div>

        <div id="white-paper">
          <i class="fas fa-music"></i>
          <i class="fas fa-music"></i>
          <i class="fas fa-music"></i>
          <i class="fas fa-music"></i>
        </div>

      </div>
   
    </div>
  </body>
</html>

please post a link to the challenge.

This entire block of code is the .black-character element.
You have added the divs inside it. Not after it as requested.

1 Like

Oh I see. Thank you very much.

1 Like

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