Originariamente inviato da pix83
Come posso fare in modo che le prime tre di sx siano "ferme" cioè che non cambino mentre l'unica che si allunghi sia solo la quarta???
prova così:
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>tab 3 + 1</title>
<style type="text/css">
<!--
table { /*definisci la tabella*/
height: 200px;
width: 500px;
}
.tdfisso { /*definisci i tre td fissi a 50px*/
height:50px;
}
-->
</style>
</head>
<body>
<table>
<tr>
<td class="tdfisso">
testo max 200</p></td>
<td rowspan="4">
testo espande</p></td>
</tr>
<tr>
<td class="tdfisso">
testo max 200</p></td>
</tr>
<tr>
<td class="tdfisso">
testo max 200</p></td>
</tr>
<tr>
<td>
testo espande</p></td>
</tr>
</table>
</body>
</html>
ciaux