Learn Responsive Web Design by Building a Piano - Step 6

Tell us what’s happening:
Hi. I’m having this issue where I am receiving the error " Sorry, your code does not pass.
Your second .key element should also have a class of black--key." But I have added this second class value already

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Piano</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  </head>
  <body>

<!-- User Editable Region -->

    <div id="piano">
      <div class="keys">
        <div class="key"></div>
        <div class="key" class="black--key"></div>
        <div class="key" class="black--key"></div>
        <div class="key"></div>
        <div class="key" class="black--key"></div>
        <div class="key" class="black--key"></div>
        <div class="key" class="black--key"></div>
      </div>
    </div>

<!-- User Editable Region -->

  </body>
</html>
/* file: styles.css */

Your browser information:

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

Challenge: Learn Responsive Web Design by Building a Piano - Step 6

Link to the challenge:

Welcome!

There is not any need to make a new class to add the black-key class.
Enter it into the same quotation marks as the key class, leaving one space between them. Do not add a comma, only a space.

Example: <div class="first value second value">

I hope this helps you!

Keep up the good progress!

1 Like

Wow, thanks for the fast answer, I appreciate it!

1 Like

You are very welcome! Happy to help you progress on your coding journey.

Class attributes can have numerous values within the same quotation marks, as long as we leave a space between them!

Keep up the good progress and happy coding!

1 Like

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