Bonsoir à tous,
Je me permet de poster un message pour vous demander un petit conseil. Voilà, j'ai créer ma feuille CSS et HTML, mais voici mon problème. Je souhaite créer 3 blocs (1 en haut, 2 en bas), mais je n'arrive qu'à un bloc. Voici une image pour montrer ce que je souhaite :
http://i80.servimg.com/u/f80/11/00/80/43/exempl10.png
Voici également mon fichier HTML est CSS :
Merci d'avance pour votre aide.
Modifié par nova313 (02 Apr 2009 - 23:50)
Je me permet de poster un message pour vous demander un petit conseil. Voilà, j'ai créer ma feuille CSS et HTML, mais voici mon problème. Je souhaite créer 3 blocs (1 en haut, 2 en bas), mais je n'arrive qu'à un bloc. Voici une image pour montrer ce que je souhaite :
http://i80.servimg.com/u/f80/11/00/80/43/exempl10.png
Voici également mon fichier HTML est CSS :
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Tomahawk</title>
<link rel="stylesheet" media="screen" type="text/css" href="style.css">
</head>
<body>
<div id="head"></div>
<div id="team">
<img src="images/kurd.png">
<img src="images/nova.png">
<img src="images/nova.png">
<img src="images/sisqo.png">
<div id="espace"></div>
<div id="match"></div>
<div id="communaute"></div>
</div>
</body>
</html>
body {
width: 522px;
margin: auto;
background-color:#222;}
#head {
margin: auto;
width: 550px;
height: 120px;
background-image: url("images/banniere.png");
margin-top: 30px;
margin-bottom: 10px;}
#corps {
padding: 5 0 0;
text-align: center;
background-color: #FFF;}
#espace {
margin-top: 20px;}
#team {
padding: 5 0 0;
text-align: center;
background-color: #FFF;}
#match {
margin: left;
width: 250px;
height: 250px;
text-align: center;
background-color: #FFF;}
#communaute {
margin: left;
width: 250px;
height: 250px;
text-align: center;
background-image: url("images/communaute.png");
background-color: #FFF;}
Merci d'avance pour votre aide.
Modifié par nova313 (02 Apr 2009 - 23:50)