No encuentro la manera de que funcione, probé como dijiste JavierB y no me anda. Lo hice con link a un archivo externo, con @import, e incluso con el estilo dentro del mismo html, y nada
Lo raro es que si coloco sólo : TD{background-image:url(../images/arrows.gif); background-repeat:no-repeat;}
sí me funciona!!
Aquí dejo el html que estoy probando....
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
TD.norepeat{background-image:url(../images/arrows.gif); background-repeat:no-repeat;}
</style>
</head>
<body>
<table width="100%" height="380" border="1">
<tr>
<td class"norepeat" > </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</body>
</html>