Build a Book Inventory App - Build a Book Inventory App

Tell us what’s happening:

my n18 isnt going through. I dont know if the code is wrong

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>Book Inventory</title>
  <link rel="stylesheet" href="styles.css">
</head>

<body>
<h1>Book Inventory</h1>
<table>
 <thead>
    <tr>
    <th>Title</th>
    <th>Author</th>
    <th>Category</th>
    <th>Status</th>
      <th>Rate</th>
  </tr>
  <thead>
    <tbody>
  <tr class="read">
    <td></td>
    <td></td>
    <td></td>
    <td><span class="status">Read</span></td>
    <td><span class="rate">
      <span></span>
     <span></span>
     <span></span></span></td>
  </tr>
  <tr class="to-read">
    <td></td>
    <td></td>
    <td></td>
    <td><span class="status">To Read</span></td>
    <td><span class="rate">
      <span></span>
     <span></span>
     <span></span>
     </span></td> 
  </tr>
  <tr class="in-progress">
     <td></td>
    <td></td>
    <td></td>
    <td><span class="status">In Progress</span></td>
    <td>
      <span class="rate one">
     <span></span>
     <span></span>
     <span></span> 
      </span>
      </td>
  </tr>
  <tbody>
</table>
</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/137.0.0.0 Safari/537.36

Challenge Information:

Build a Book Inventory App - Build a Book Inventory App

Please share your CSS code as well

tr[class=“read”] {

background-image: linear-gradient(60deg, pink, purple);

}

tr[class=“to-read”] {

background-image: linear-gradient(60deg, orange, red);

}

tr[class=“in-progress”] {

background-image: linear-gradient(60deg, lightblue, navy);

}

span {

display: inline-block;

}

tr[class="to-read], span[class=“status”] {

}

nevermind, I just got it. Thank you.