Prova così. Css:
codice:
#tabella1 {
border-collapse:collapse;
border:1px solid #0000ff; /* modificare colore bordo*/
background-color: #ffffff;
}
#tabella1 td {
width:126px;
height:43px;
background-image: url(blue.jpeg);
text-align:center;
font-weight:bold;
padding:0;
white-space: nowrap;
}
#tabella2 {
border-collapse:collapse;
border:1px solid #0000ff; /* modificare colore bordo*/
background-color: #ffffff;
}
#tabella2 td {
width:126px;
height:43px;
background-image: url(red.jpeg);
text-align:center;
font-weight:bold;
padding:0;
white-space: nowrap;
}
e poi semplicemente
codice:
<table id="tabella1">
<tr>
<td>Sfida</td>
<td>Punteggio</td>
<td>Campionato</td>
<td>Segnalazioni</td>
</tr>
</table>