Hey my name is Nathan, I am trying to do step 48 for the Book Inventory App, and I am having trouble getting it to register my work. Does anyone know what’s going on? Below is my code.
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>
</thead>
<tbody>
<tr class="read">
<td></td>
<td></td>
<td></td>
<td><span class="status">Read</span></td>
<td> <span class="rate one">
<span></span>
<span></span>
<span></span>
</span>
</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>
<tr class="to-read">
<td></td>
<td></td>
<td></td>
<td><span class="status">To Read</span></td>
<td> <span class="rate two">
<span></span>
<span></span>
<span></span>
</span>
</td>
</tr>
<tr class="read">
<td></td>
<td></td>
<td></td>
<td><span class="status">Read</span></td>
<td>
<span class="rate three">
<span></span>
<span></span>
<span></span>
</span>
</td>
</tr>
</tbody>
</table>
</body>
</html>
, and here is my
CSS:
span\[class\*="one"\] span:first-child {
background-image: linear-gradient(yellow, blue);
}

