Menu
×
×
Correct!
Exercise:Use contextual classes to add the following colors to the rows: First row green
<table class="table">
<tr class="@(7)">
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
<tr>
<tr class="@(6)">
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr class="@(4)">
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
</tr>
</table>
<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 ❯ |
This will reset the score of ALL 54 exercises.
Are you sure you want to continue?