Bonjour,
J'ai un problème de positionnement, j'ai un div conteneur centré dans la fenêtre du navigateur et je souhaite afficher au dessus toujours centré dans la fenêtre un second div plus petit.
Voici mon code actuel :
J'ai essayé plusieurs combinaisons avec position, float mais sans succès.
Merci pour votre aide,
ZiP
J'ai un problème de positionnement, j'ai un div conteneur centré dans la fenêtre du navigateur et je souhaite afficher au dessus toujours centré dans la fenêtre un second div plus petit.
Voici mon code actuel :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Titre</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-15" />
<meta http-equiv="content-language" content="fr"/>
<style type="text/css" media="all">
body
{
background-color : #C5D7ED;
color : #000000;
font-family : Verdana, sans-serif;
font-size : 11px;
margin : 0;
padding : 0;
}
img
{
border : none;
}
#conteneur
{
background-color : #00FF00;
height : 800px;
margin-left : auto;
margin-right : auto;
position : relative;
width : 800px;
}
#photos
{
background-color : #FF0000;
height : 600px;
margin-left : auto;
margin-right : auto;
position : relative;
width : 600px;
}
</style>
</head>
<body>
<div id="conteneur"></div>
<div id="photos"></div>
</body>
</html>
J'ai essayé plusieurs combinaisons avec position, float mais sans succès.
Merci pour votre aide,
ZiP