ho una tabella generale che contiene il tutto (che chiamerò A) e all'interno posiziono tutte le altre tabelle con i vari topic del sito.
Tutte le tab interne sono posizionate con allineamento in alto e centrale ma ne vorrei mettere una di questo (l'ultima) allineata in basso (la tab che contiene 'CREDITS' quindi una striscia di circa 10 px) ma non riesco.
Se do alla tab principale A, oltre alla larghezza di 760 px, anche un'altezza di 100% mi sfasa tutte le tab interne ovvero non me le tiene allineate tutte in alto e quella dei 'CREDITS' in basso ma me le posiziona in centro.
Allego il codice per far capire meglio:
- Codice: Seleziona tutto
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-image: url(img/lati.jpg);
background-repeat: repeat-y;
background-position: center;
margin: 0px;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: small;
}
body {
}
-->
</style></head>
<body>
<div align="center">
<table width="760" border="0" bordercolor="#000000" bgcolor="#660000">
<tr>
<td><div align="center">
<table width="100%" border="0" align="center">
<tr>
<td width="760" height="100">BANNER</td>
</tr>
<tr>
<td width="760" height="20"><div align="center">
<table width="100%" border="0">
<tr>
<td width="140" height="20"><div align="center">PROFILO</div></td>
<td width="3" height="20"><div align="center">|</div></td>
<td width="140" height="20"><div align="center">PRODOTTI</div></td>
<td width="3" height="20"><div align="center">|</div></td>
<td width="140" height="20"><div align="center">DOVE SIAMO </div></td>
<td width="3" height="20"><div align="center">|</div></td>
<td width="140" height="20"><div align="center">CONTATTI</div></td>
<td width="3" height="20"><div align="center">|</div></td>
<td width="140" height="20"><div align="center">LINK</div></td>
</tr>
</table>
</div></td>
</tr>
</table>
<table width="100%" height="100%" border="0">
<tr>
<td><div align="center">CONTENUTO DEL SITO </div></td>
</tr>
</table>
<table width="100%" border="0" align="center">
<tr>
<td>LA TAB CHE CONTIENE questa TESTO DOVREBBE ESSERE ALLINEATA IN BASSO </td>
</tr>
</table>
</div></td>
</tr>
</table>
</div>
</body>
</html>