Ho cambiato qualcosa ma i bordi della cella proprio non vengono visualizzati.
<HTML>
<HEAD>
<TITLE>menu </TITLE>
<style>
.Item {
cursor: hand;
font-family: verdana;
font-size: 10pt;
font-style: normal;
font-weight:bold;
background-color: white;
text-decoration:none;
border-width:0px;
border-color:white;
color: black}
.Highlight {
cursor: hand;
font-family: verdana;
font-size: 10pt;
font-style: normal;
background-color: white;
font-weight:bold;
color: orange;
text-decoration:none;
border-color:red;
border-width:2px }
</style>
<script>
function rollon() {
window.event.srcElement.className = "Highlight";
}
function rolloff() {
window.event.srcElement.className = "Item";
}
</script>
</HEAD>
<BODY >
<table summary="" cellpadding="3" cellspacing="0" border="0" >
<tr >
<td>Presentazione</td>
</tr>
<tr >
<td>Organi</td>
</tr>
<tr>
<td >Iscrizioni</td>
</tr>
</table>
</body>
</html>
![]()
![]()