Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/11/2012, 13:26
Avatar de tutorias
tutorias
 
Fecha de Ingreso: octubre-2012
Ubicación: Medellin
Mensajes: 69
Antigüedad: 11 años, 6 meses
Puntos: 13
De acuerdo Respuesta: Estirar la foto del background de una tabla

Un saludo. Tal vez esto te pueda servir.

Código HTML:
<!DOCTYPE html>
<html lang="es-CO">
<head>
	<meta charset="UTF-8">
	<title></title>
	<style>
		table{
			-moz-background-size   :100%;
			-o-background-size     :100%;
			-webkit-background-size:100%;
			background             :url("imagenDeFondo.jpg");
                        background-repeat      :no-repeat;
			background-size        :100%;
			border                 :0;
			height                 : 200px;
			width                  : 600px;
		}
	</style>
</head>
<body>
	<table>
		<tr>
			<td>!Hola mundo!</td>
		</tr>
	</table>
</body>
</html>