-1
Good night! I’m doing a WHILE of the data coming from the database to a table using css but I couldn’t get the table cells together and with the same border. An example of the table I made:
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 css only?
Thank you, that’s what I wanted. so simple and I couldn’t.
– user122194