Originariamente inviato da Dodo66
Ho usato questo codice:
<STYLE type=text/css>
<!--
#sfondo {
background-image:url('businnes.jpg') ;
background-repeat:no-repeat;
}
-->
</STYLE>
per non far ripetere l'mmagine nella tabella ma quest'ultima si ripete comunque
sia chiamando la tabella con id="sfondo"
che con name="sfondo"
che con <div>="sfondo"
Guarda io ho provato questa pagina sulla tua falsa riga e ti assicuro che funziona e non da problemi
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<style type="text/css">
<!--
#sfondo {
background-image: url(immagine.jpg);
background-repeat: no-repeat;
}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellpadding="0" cellspacing="0" id="sfondo">
<tr>
<td width="33%" height="200"></td>
<td width="33%" height="200"></td>
<td width="33%" height="200"></td>
</tr>
</table>
</body>
</html>