 
			
				08/03/2007, 16:21
			
			
			     |  
      |    |    |    Fecha de Ingreso: octubre-2003  Ubicación: Montevideo-Uruguay  
						Mensajes: 49
					  Antigüedad: 22 años Puntos: 0     |        |  
  |      Re: cambiar el color de una fila al pasar el raton        estimado; 
si bien no he seguido tu código, he hecho uno que si funciona, pruebalo y me cuentas:   
<html> 
	<style> 
		#celda_comun { 
				background: #F7F7F7; 
			}   
		#celda_fondo { 
				background: #cc0000; 
			}   
		#celda_fondo:hover { 
				background: #800000; 
			}   
	</style> 
	<body>   
		<table width="50%" border=1> 
			<tr> 
				<td id="celda_comun" height="20"> 
				</td> 
			</tr> 
			<tr> 
				<td id="celda_fondo" height="20"> 
				</td> 
			</tr> 
		</table>   
	</body> 
</html>              |