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>