Get the code of CSS Table Border Color 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>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Ramzan</td>
<td>28</td>
</tr>
<tr>
<td>Abdul</td>
<td>30</td>
</tr>
</table>table, th, td {
border: 1px solid red;
}