sto provando questo codice css. due background-image. uno nel tag html e uno nel contenitore div.
il fatto è che tutto mi funziona bene, con moz, chrome e safari; IE, invece, mi da solo il secondo background e non riesco a darmi spiegazioni...
mi aiutate?
ecco il codice semplice, semplice;
codice:
<html> 
<head> 
<style type="text/css"> 
html{ background-image:url(sfondo1.png); /*gradiente nero-grigio*/ 
background repeat:repeat-y; } 
#contenitore{ height:600px; background-image:url(sfondoReticolato.png); /*reticolato*/ } 
</style> 
</head> 
<body> 
<div id="contenitore">
</div> 
</body> 
</html>