buongiorno a tutti,
ho creato un contenitore div ma da pagina a pagina cambia le dimensioni dello sfondo e non capisco perchè....
es...questa è il css:
codice:
.contenitore{
	height = 800 px;
	width = 600 px;
	border = 0px;
	background-image: url(sfondo2.gif);
	background-position:center;
	background-repeat:no-repeat;
	background-attachment: fixed;
}
e questa è una pagina con sfondo corretto:
codice:
<html>
	<head>
		<title></title>
	        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
		<link rel='stylesheet' type='text/css' href='cont.css'/>
	</head>
	<body>
		<?php include("menu.htm") ?>
	
	        <div class="contenitore" align="center"> 
		   <form enctype="multipart/form-data" method="post" action="clipolupload.php" >
			//corpo del form
		   </form>
        	</div>
        </body>
</html>
mentre questa è la pagina che mi taglia l'immagine:
codice:
<html>
   <head>
      <title></title>    
         <link rel='stylesheet' type='text/css' href='cont.css'/>
   </head>
   <body>
      <?php include("menu.htm") ?>
      <div class="contenitore" align="center">
         <form method="post" action="registra.php">
            //corpo del form
 	    <input type="submit" value="Conferma">
	    <input type="reset" value="Reset">
         </form>
      </div>
   </body>
</html>
esattamentte mi taglia l'immagine subito dopo i tasti di conferma e reset.
qualcuno riesce ad illuminarmi?
grazie a tutti in anticipo