he intentado:
table tr.marked {
background-color: #00CC33;
}
pero no furula xD, sera que no es CSS??, porque lo he visto en unas paginas web, y furula, pero a mi no

| ||||
Respuesta: Marked?? No creo que sea JS, pero talvez. Con JS seria asi: Código HTML: <html> <head> </head> <body> <table border="0" cellpadding="0" cellspacing="0"> <tr style="background-color: #336699" onclick="if(this.style.backgroundColor=='#336699') this.style.backgroundColor='#ffffff'; else this.style.backgroundColor='#336699';"> <td>Tocame</td> <tr> </table> </body> </html> |