Arieccomi qua XD
vi spiego il mio problema... ho intenzione di impostare un'intera tabella in CSS e ora vi spiegherò come. Intanto scrivo il codice HTML:


codice:
<table>
<tr>
<td class="upsx"></td>
<td class="up"></td>
<td class="updx"></td>
</tr>
<tr>
<td class="sx"></td>
<td><iframe name="pippo" frameborder="1"></iframe></td>
<td class="dx"></td>
</tr>
<tr>
<td class="downsx"></td>
<td class="down"></td>
<td class="downdx"></td>
</tr>
</table>
e questo è il CSS:

codice:
body {
background: black;
text-align: center;
font-family: Currier New, Times new roman, Verdana;
text-color: #FFFFFF;
}

table {
cellpadding: 0;
cellspacing: 0;
width: 250px;
height: 500px;
}

.upsx {
background-image: table/upsx.gif;
}

.up {
background-image: table/up.gif;
background-repeat: repeat-x;
}

.updx {
background-image: table/updx.gif;
}

.sx {
background-image: table/sx.gif;
background-repeat: repeat-y;
}

.dx {
background-image: table/dx.gif;
background-repeat: repeat-y;
}

.downsx {
background-image: table/downsx.gif;
}

.down {
background-image: table/down.gif;
background-repeat: repeat-x;
}

.downdx {
background-image: table/downdx.gif;
}
In pratica non mi si vede una mazza >.< Vedo solo l'iframe...
Qualcuno sa rispondermi?