So this is a plain table tbody tr I'm using with React.
and I would like to style it like this output
The tree is pretty simple
<tbody>
<tr>
<td>lendsqr</td>
<td>{props.username}</td>
<td>{props.email}</td>
<td>{props.phoneNumber}</td>
<td>{props.dateJoined}</td>
<td>{props.status}</td>
</tr>
</tbody>
I've tried this and pretty much the same to tbody, tr
tr {
border-width:1px; border-style:solid; border-color:gray;
}
the only one that works is td
td {
border-width:1px; border-style:solid; border-color:gray;
}