Tell us what’s happening:
im stuck at step 45 i have commands right i believe and it does not reconize the code
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>
<h1>Book Inventory</h1>
<body>
<table>
<tr>
<th>Title</th>
<th>Author</th>
<th>Category</th>
<th>Status</th>
<th>Rate</th>
</tr>
<tbody>
<tr class="read">
<td>Final Destination</td>
<td>Natasha Rhodes</td>
<td>Horror/Mystery</td>
<td><span class="status">Read</span></td>
<td><span class="rate one">
<span class=></span>
<span></span>
<span></span>
</span></td>
</tr>
<tr class="read">
<td>Marvel Zombies</td>
<td>Mark Kirman</td>
<td>Horror/Zombies</td>
<td><span class="status">Read</span></td>
<td><span class="rate three">
<span></span>
<span></span>
<span></span>
</span></td>
</tr>
<tr class="to-read">
<td>Ultimate Spiderman</td>
<td> Jonathan Hickman</td>
<td>Fiction/Superhero</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="in-progress">
<td>Berserk</td>
<td>Kentaro Miura</td>
<td>Manga</td>
<td><span class="status">In Progress</span></td>
<td><span class="rate three">
<span></span>
<span></span>
<span></span>
</span></td>
</tr>
</tbody>
</table>
</body>
</html>
/* file: styles.css */
tr[class="read"]{
background-image: linear-gradient(green , lightgreen)
}
tr[class="to-read"]{
background-image: linear-gradient(gray , white)
}
tr[class="in-progress"]{
background-image: linear-gradient(yellow , orange)
}
span{
display: inline-block;
}
tr[class="to-read"] span[class="status"]{
border: 3px solid red;
background: red;
border-radius: 10px;
}
tr[class="read"] span[class="status"]{
border: 3px solid lightgreen;
background: lightgreen;
border-radius: 10px;
}
tr[class="in-progress"] span[class="status"]{
border: 3px solid orange;
background: orange;
border-radius: 10px;
}
span[class="status"] span[class="rate"]{
}
td{text-align: center;
}
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0
Challenge Information:
Build a Book Inventory App - Build a Book Inventory App