Enfin j'ai trouvé la solution sur un forum aprés une semaine de recherche ;
il me fallait appeler la class du style à partir une balise div comme suit
<div class="monclass"><img src="image"></div>
ça marche bien :
<style type="text/css">
.img-ombre {
position:relative;
background: url(cadre.jpg) no-repeat;
width:110px;
height:110px;
background-position: center center;
padding:25px;
}
</style>
<html>
<head>
<body>
<table width="800" border="1">
<tr>
<td aling="center" valign="middle" height="200" ><div class="img-ombre"><img src="1.jpg" width=110px height=110px border="0"></div></td>
<td aling="center" valign="middle" height="200" ><div class="img-ombre"><img src="2.jpg" width=110px height=110px border="0"></div></td>
</tr>
<tr>
<td aling="center" valign="middle" height="200" ><div class="img-ombre"><img src="3.jpg" width=110px height=110px border="0"></div></td>
<td aling="center" valign="middle" height="200" ><div class="img-ombre"><img src="4.jpg" width=110px height=110px border="0"></div></td>
</tr>
</table>
</body>
</head>
</html>
j'ai trouvé cette solution sur cet adresse :http://archivist.incutio.com/viewlist/css-discuss/54484
merci
