Can anyone help me with a problem I'm having while trying to create simple borders on a table? The border appears bold in the second row and last row, does anyone know why this is happening?
https://i.sstatic.net/bCuhK.jpg
Just a note: when I checked back on the W3School tutorial, I noticed that they had the same issue. Could this be a browser problem?
///// My Css code ///////
table{ border-collapse :collapse;}
Table, td { border: 1px solid black;
//// HTML code /////
<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>