28172 sujets

CSS et mise en forme, CSS3

Voilà je viens de commencer à coder mon site , et j'ais un petit porblème : un décalage verticale sous IE7 ( FF : OK - OPERA : OK - SAFARI : OK ) .
Je suis débutant en programmation j'espère que vous pourrez m'apporter votre aide.

<!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>
<title>Matt's vision</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>

<div id="global">

	<div id="left">
	
		<object class="bandes" type="application/x-shockwave-flash" data="bandes.swf" width="240" height="520">
		<param name="movie" value="bandes.swf">
		<param name="loop" value="false">
		alt : <a href="bandes.swf"></a>
		</object>
		
	</div>
	
	<div id="b" >
	
		<img src="images/back.png" width="443" height="515" alt="" class="back" />
		
	</div>
	
</div>

</body>
</html>





body
{ 
	background-color: #0b0706;
}

#global
{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 620px;
	height: 505px;
}


#left

.bandes

{
	float: left;
	width:240px;
	height: 520px;
	margin : 0px;
	margin-left: 430px;
	
}

#b

{
	margin-top: 175px;
	margin-left: 670px;
	width: 443px;
	height: 515px;		
}


Ps : http://matt0127.free.fr/Matt%27s%20vision/accueil.html
Merci d'avance
Modifié par Mattzs (20 Dec 2008 - 13:23)