Get the code of CSS Table Border Collapse and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.
<table>
<tr>
<th>Names</th>
<th>City Name</th>
</tr>
<tr>
<td>Jack</td>
<td>New York</td>
</tr>
<tr>
<td>Rubia</td>
<td>Delhi</td>
</tr>
</table>table, th, td {
border: 2px solid lightblue;
}
table {
border-collapse: collapse;
}