ciao a tutti
sto creando un blog ma il codice ke uso x disegnarne il layout funziona solo con Firefox e nn riesco a capire xkè su IE nn si vede allo stexo modo

vi posto il codice css:
codice:
html {
            overflow-y: scroll;
}

body {
	text-align: center;
	margin: 0px;
	background-color: transparent;
	font-family: Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

#header{
        height: 292px;
	width: 100%;
        margin-left: 1px; 
	padding-bottom: 0px;
	padding-top: 0px;
	border-bottom: 0px
	border-top: 0px
	margin-bottom: 10px;
	background-image: url(http://www.snapdrive.net/files/465863/top.png);
	background-repeat: no-repeat;
}

#container{
	margin-left: auto;
	margin-right: auto;
	width: 750px;
	text-align: left;
        background-color: transparent;
}

#container2{
	background-image: url(http://www.snapdrive.net/files/465863/line.png);
        background-repeat: repeat-y;
}

#contentleft{
	float: left;
	width: 175px;
	background-color: transparent;
	border-right: 0px;
	border-bottom: 0px;
	margin: 10px 0 10px 0;
	padding: 0 10px 5px 10px;
	font-size: 12px;
}

#contentright{
	float: right;
	width: 175px;
	background-color: transparent;
	border-left: 0px;
	border-bottom: 0px;
	margin: 10px 0 10px 0;
	padding: 0 10px 5px 10px;
	font-size: 12px;
}

#footer{
        height: 64px;
	clear: both;
	border-bottom: 0px;
	border-top: 0px;
	background-image: url(http://www.snapdrive.net/files/465863/footer.png);
        background-repeat: no-repeat;
	padding: 10px 10px 10px 0;
}
mentre questo è il codice html
codice:
	
	<div id="container">
			
	
		<div id="header"></div>
	
	
	
		<div id="container2">
		
		
			<div id="contentleft"></div>
		
		
		
			<div id="contentright"></div>
		
		
		
			<div id="contentmain"></div>
		

		</div>
	

					
			<div id="footer"></div>
		
			
	</div>
se qcuno potexe darmi 1 mano gliene sarei immensamente grato!