It's table time!
<table class="custom-table">
<tr>
<td>231232131</td>
<td>INTERNATIONAL FEDERATION O</td>
</tr>
</table>
I'm aiming for a row with some color, like #eee;
Currently, with this CSS:
tr{
background:#eee;
}
I get the gray row I want, but there's white space between the cells. If I try:
table{
background:#eee
}
Then I lose that space between the rows. Any ideas on how to fix this?