Menu
×
×
Correct!
Exercise:Use contextual classes to add the following colors to the rows: First row green
<table class="table">
<tr class="success">
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
<tr>
<tr class="danger">
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr class="info">
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
</tr>
</table>
Not CorrectClick here to try again. Correct!Next ❯<table class="table"> <tr class=""> <td>John</td> <td>Doe</td> <td>john@example.com</td> <tr> <tr class=" "> <td>Mary</td> <td>Moe</td> <td>mary@example.com</td> </tr> <tr class=" "> <td>July</td> <td>Dooley</td> <td>july@example.com</td> </tr> </table> |