Good evening! I'm doing a WHILE of data coming from the database to a table using css but I could not get the table cells to stick together and with the same border. An example of the table I did:
table{
width: 100%;
}
table td{
padding: 10px;
text-align: center;
border: 1px solid black;
}
<table>
<tr>
<td>
OK
</td>
<td>
OK
</td>
<td>
OK
</td>
<td>
OK
</td>
</tr>
</table>
How to remove these spaces between cells using only css?