Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/11/2007, 02:33
Eourus
 
Fecha de Ingreso: octubre-2006
Ubicación: Murcia - España
Mensajes: 336
Antigüedad: 17 años, 6 meses
Puntos: 6
Re: bcground en css

Este ejemplo te lo pongo con colores normamles. Tu simplemente tendrías que cambiar la propiedad background-color ... por background-image y su valor correspondiente.

Código HTML:
<style type="text/css">
	.tabla { background-color:red; }
	.tabla:hover { background-color:blue; }
</style>

<table cellpadding="0" cellspacing="0" class="tabla">
	<tr>
		<td>columna 1</td>
		<td>columna 2</td>
	</tr>
</table>