Ti chiedo umilmente scusa se non ho risposto prima ma non mi ero accorto del tuo post, scusa ancora
Con questo codice a me funziona bene!
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>test tabella</title>
<style type="text/css">
<!--
html { height: 100%; width: 100%; }
html, body { padding: 0; margin: 0; }
body { background: #fff; }
* {
color: black;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
#main {
width: 85%;
margin: 0 auto;
}
#contenuti {
width: 100%;
margin: 10px 0px 0px 0px;
background-color: navy;
}
img, a { border: none; }
table {
width: 100%;
}
#tabella1 {
border: 1px solid silver;
padding-bottom: 30px;
}
#tabella1 th {
background-color: #C8C8C8;
padding: 0.3em;
line-height: 1.3em;
}
#tabella1 td {
height: 20px;
line-height: 20px;
padding: 0.2em;
margin-right: 5px;
}
#tabella1 td.azienda {
width: 10px;
overflow: hidden;
padding: 0.2em 0.5em 0.2em 0.5em;
font-size: 0.8em;
}
#tabella1 td.azienda p {
width: 80%;
/*white-space: nowrap="nowrap";*/
overflow: hidden;
margin: 0; padding: 0;
background-color: green
}
#tabella1 td.nome {
width: 100px;
font-size: 0.8em;
overflow: hidden;
/*white-space: nowrap="nowrap";*/
padding: 0.2em 0.5em 0.2em 0.5em;
}
#tabella1 td.nome p {
width: 80%;
/*white-space: nowrap="nowrap";*/
overflow: hidden;
margin: 0; padding: 0;
background-color: green
}
#tabella1 td.email {
color: #333366;
font-family: "Courier New", Courier, mono;
font-size: 0.9em;
white-space: nowrap="nowrap";
padding: 0.2em 0.5em 0.2em 0.5em;
}
#tabella1 td.categoria {
padding: 0.2em 0.5em 0.2em 0.5em;
white-space: nowrap="nowrap";
font-size: 0.8em;
}
#tabella1 td.provincia {
padding: 0.2em 0.5em 0.2em 0.5em;
font-size: 0.8em;
}
#tabella1 .tr_dispari {background-color:#F5F5F5;}
#tabella1 .tr_pari {background-color: #EEEEEE;}
#tabella1 tr:hover {background-color: #E7EEF1;}
#tabella1 a {
background-color: transparent;
display: block;
}
-->
</style>
</head><body>
<div id="main">
<div id="contenuti">
<h3>Provaaaaaaaa</h3>
<table id="tabella1">
<thead>
<tr>
<th nowrap="nowrap" width='1%'>Ragione Sociale </th>
<th nowrap="nowrap" width='1%'>Utente </th>
<th nowrap="nowrap" width='1%'>Email </th>
<th nowrap="nowrap" width='1%'>Categoria </th>
<th nowrap="nowrap" width='1%'>testo testo testo testo testo testo testo testo </th>
<th nowrap="nowrap" width='1%'></th>
<th nowrap="nowrap" width="1%"></th>
<th nowrap="nowrap" width="1%"></th>
</tr>
</thead>
<tbody>
<tr class='tr_pari'>
<td nowrap="nowrap"><td nowrap="nowrap"="nowrap="nowrap"" class="azienda" title="questo testo è lungo e dovrebbe restare dentro l'overflow">
questo testo è lungo e dovrebbe restare dentro l'overflow</p><td nowrap="nowrap"></td>
<td nowrap="nowrap" class="nome" title="un nome di prova lungo">
un nome di prova lungo</p></td>
<td nowrap="nowrap" class="email">info@unsito.it</td>
<td nowrap="nowrap" class="categoria">una categoria</td>
<td nowrap="nowrap" class="provincia">Terni</td>
<td width="1" nowrap="nowrap"></td>
<td width="1" nowrap="nowrap"></td>
<td width="1" nowrap="nowrap"></td>
</tr>
<tr class='tr_dispari'>
<td nowrap="nowrap"><td nowrap="nowrap"="nowrap="nowrap"" class="azienda" title="questo testo è lungo e dovrebbe restare dentro l'overflow">
questo testo è lungo e dovrebbe restare dentro l'overflow</p><td nowrap="nowrap"></td>
<td nowrap="nowrap" class="nome" title="xxxx">
prova</p></td>
<td nowrap="nowrap" class="email">info@unsito.it</td>
<td nowrap="nowrap" class="categoria">una categoria</td>
<td nowrap="nowrap" class="provincia">Terni</td>
<td width="1" nowrap="nowrap"></td>
<td width="1" nowrap="nowrap"></td>
<td width="1" nowrap="nowrap"></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>