Menu
×
×
Correct!
Exercise:Add a class that will make the table more compact by cutting cell padding in half.
<table class="table @(15)">
<tr>
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
<tr>
<tr>
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr>
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
</tr>
</table>
<table class="table table-condensed">
<tr>
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
<tr>
<tr>
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr>
<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?