×
×
Correct!
Collapse the table borders into a single border.
<style>
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid green;
}
</style>
<body>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
</tr>
</table>
</body>
Not CorrectClick here to try again. Correct!<style> table {: ; } table, th, td { border: 1px solid green; } </style> <body> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>Peter</td> <td>Griffin</td> </tr> <tr> <td>Lois</td> <td>Griffin</td> </tr> </table> </body> |