Menu
×
×
Correct!
Exercise:Add a class that will add borders on all sides of the table and cells.
<table class="table table-bordered">
<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 ❯<table class="table"> <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> |