Originariamente inviato da piero06
OK, ma ad esmpio in questo esempio ( che bella ripetizione ! :gren: ):

<html>
<head>
<title>Menu con rollover bordi</title>
<style>
table {
border: 1px solid black;}
td {
height: 25px;
border: 1px solid white;
font-family: verdana;
font-size: 10px;
background:white;}
td a:link {
position:relative;
display:block;
font-size:10px;
color: #061998;
text-decoration: none;}
td a:hover {
position:relative;
font-size:10px;
color: #4ebafa;
text-decoration: none;}
td a:visited {
font-size:10px;
color: #4ebafa;
text-decoration: none;}
.due {
border: 1px solid black;
background:#b1f3e4;}

</style>

</head>

<body>

<table width=150 height=70 border=0>
<tr><td style="background:#d0cece;"><center>:: menù ::<center> </center></center> </td></tr>
<tr>
<td onMouseOver="this.className='due'" onMouseOut="this.className=''">
<center>home page<center> </center></center></td></tr>
<tr>
<td onMouseOver="this.className='due'" onMouseOut="this.className=''">
<center>news<center> </center></center></td></tr>
<tr>
<td onMouseOver="this.className='due'" onMouseOut="this.className=''">
<center>info<center> </center></center></td></tr>
<tr>
<td onMouseOver="this.className='due'" onMouseOut="this.className=''">
<center>portfolio<center> </center></center></td></tr></table

<table>
<tr>
<td>Ciao belli </td>
</tr>
</table>

</body>
</html>

La prima tabella vorrei che si adegui al css mendre la seconda "ciao belli " no . Come faccio ?

ciao
.alternate {font-family: verdana; font-size: 16px; font-color: red;}

Inserisci questa classe nel tuo css e poi rikiamalo:

<td class="alternate">ciao belli</td>