J'ai un problème d'affichage de mon site web. Lorsque je met mon site internet en mode réduit, l'écriture (qui est en position:relative) se déplace complètement.
index.php
menu.css
En espérant que vous pourrez m'aider!
Modifié par holidayteam (19 Mar 2007 - 23:02)
index.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<div id="fond">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<title>Premium Gamez</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" media="screen" type="text/css" title="menu" href="style/menu.css"/>
</head>
<body>
<div id="menu_hor">gdfgfdgfdsg</div>
<div id="menu">gfdgsdfgdf</div>
<div id="corps"></div>
</body>
</html>
</div>
menu.css
html
{
margin: 0;
padding: 0;
background: url('fond-site.jpg') repeat-y center top;
}
body
{
margin: 0;
padding: 0;
margin: auto;
width: 760px;
height: 847px;
background: url('fond.jpg') no-repeat center top;
}
#menu_hor
{
position: relative;
top:200px;
left: 228px;
width: 353px;
}
#menu
{
position: relative;
top:317px;
left:0px;
width: 158px;
text-align: center;
}
#corps
{
position: relative;
top: 235px;
left: 159px;
width: 601px;
}
En espérant que vous pourrez m'aider!
Modifié par holidayteam (19 Mar 2007 - 23:02)