Bonsoir à tous mes amis du net,
J'ai tout petit souci, bien légère...
Je me demande comment on fait pour "fermer" le design en fonction de la taille hauteur d'un corps...
Je m'explique :
Regardez cette image pour vous aider à comprendre
Je n'arrive pas à faire fermer le design en fonction d'où le texte se termine...
Voici le code source de ma fiche xhtml
Code HTML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 <!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" > <head> <title>WebDesgin par Ghost Warrior</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link href="includes/style_gw_d.css" rel="stylesheet" media="screen" /> </head> <body> <div id="cadre_principal"> <?php include('includes/partie_header.php'); ?> <?php include('includes/partie_barre_navig.php'); ?> <div id="partie_corps_general"> <div id="partie_gauche"> gauche<br /> fgdfgdfgd gd gd g dfg df gds fg dfg dfg df gdfg dfgsdfg,sdfklgjdsfl mjgmdfj gsdf gdf gmldsfgjsdflgmj ldsfjgsdmlgjsdfg jldfsjg sdfmgj lskdfjgsdj </div> <div id="partie_droite"> droite<br /> fgjfkdjgmlkdfs sdkl gjdsf gklsdflmkgdsmlkfg jkldsf gklmsdf gfdsflkgfdsklgsdkfl gklsdf gklmsdfgklmsdfl gsdflkgfslkd glmksdf gmlksdf </div> </div> </div> </body> </html>
Code CSS : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 body { background-color: #999999; margin: 0px; } #cadre_principal { margin: auto; width: 85%; border: 1px solid #000000; } #partie_header { background-color: #2D6E95; border-bottom: 1px solid #000000; } #partie_barre_navig { border-bottom: 1px solid #000000; } #partie_corps_general { background-color: #FFFFFF; padding-bottom: 30px; padding-left: 50px; padding-top: 45px; padding-right: 45px; } #partie_gauche { float: left; width: 70%; } #partie_droite { float: right; width: 25%; }
Où est mon erreur ?
Merci d'avance !
Partager