Visualizzazione dei risultati da 1 a 3 su 3

Discussione: TR con link

  1. #1
    Utente di HTML.it
    Registrato dal
    May 2001
    Messaggi
    143

    TR con link

    Buongiorno ragazzi mi servirebbe una mano

    al passaggio del maus devo evidenziare tutto un <tr> io ho provato cosi' ma funge solo per le singole celle:

    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_reloadPage(init) { //reloads the window if Nav4 resized
    if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
    else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
    }
    MM_reloadPage(true);
    //-->
    </script>


    .classetd {
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #000000;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #000000;
    font-weight : bold;
    }
    .classetd a {
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    color: Black;
    display: block;
    padding-top: 2px;
    padding-bottom: 2px;
    position: relative;
    text-decoration: none;
    font-weight : bold;
    }
    .classetd a:hover {
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: Black;
    text-decoration: none;
    background-color: White;
    font-weight : bold;
    }
    <table width="100%" border="0" cellpadding="0" cellspacing="0" class="bordotab">
    <tr>
    <td class="classetd">Menu 2</td>
    <td class="classetd">Menu 3</td>
    </tr>
    </table>


    1000 grazie a chi mi possa dare una mano.
    Gennaro

  2. #2
    <html>
    <head>
    <style>
    .classetd {
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #000000;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #000000;
    font-weight : bold;
    }
    </style>
    </head>
    <body>
    <table width="100%" border="0" cellpadding="0" cellspacing="0" class="bordotab">
    <tr onMouseOver="this.style.background='#ff3300'" onMouseOut="this.style.background='#ffffff'">
    <td class="classetd">Menu 2</td>
    <td class="classetd">Menu 3</td>
    </tr>
    </table>
    </body>
    </html>
    Potere e Potenza

  3. #3
    Utente di HTML.it
    Registrato dal
    May 2001
    Messaggi
    143
    1000 grazie
    Gennaro

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.