Menu
×
×
Correct!
Exercise:Use contextual classes to add the following colors to the rows: First row green
<table class="table">
<tr class="@(13)">
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
</tr>
<tr class="@(12)">
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr class="@(13)">
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
</tr>
</table>
<table class="table">
<tr class="table-success">
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
</tr>
<tr class="table-danger">
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr class="table-primary">
<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 50 exercises.
Are you sure you want to continue?