Il mio obiettivo è creare una pagina HTML simile a una "cornice per foto". In altre parole, voglio creare una pagina vuota circondata da 4 immagini.
Questo è il mio codice:
<table>
<tr>
<td class="bTop" colspan="3">
</td>
</tr>
<tr>
<td class="bLeft">
</td>
<td class="middle">
</td>
<td class="bRight">
</td>
</tr>
<tr>
<td class="bBottom" colspan="3">
</td>
</tr>
</table>
E le classi CSS sono le seguenti:
.bTop
{
width: 960px;
height: 111px;
background-image: url('../Images/BackTop.jpg');
}
.bLeft
{
width: 212px;
height: 280px;
background-image: url('../Images/BackLeft.jpg');
}
.middle
{
width: 536px;
height: 280px;
}
.bRight
{
width: 212px;
height: 280px;
background-image: url('../Images/BackRight.jpg');
}
.bBottom
{
width: 960px;
height: 111px;
background-image: url('../Images/BackBottom.jpg');
}
Il mio problema è che sto ottenendo sottili linee bianche tra le celle del tavolo, intendo che il bordo delle immagini non è continuo. Come posso evitare questi spazi bianchi?