Slt,
Voila j'pense que c'est peut etre une question bête pour certain mais bon.
Je voudrais que mes div s'ajuste automatiquement j'ai essayé de mettre width en pourcentage mais selon le navigateur c'est un peu le foutoire sur Firefox j'ai un affichage nikel mais sur IE 6 c'est trop petit et sur IE 7 c'est trop grand.
Franchement je comprend pas trop, j'ai mis ceci :
Voilà merci d'avance pour votre aide
Code : 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59 div#bandeau { position:absolute; float:left; top:50px; left:80px; width:85%; height:100px; background:#fff url(../images/Fond/bandeau.png); background-repeat: no-repeat; border-left:1px #fff outset; border-top:1px #fff outset; border-right:1px #000085 outset; } div#footer2 { position:absolute; float:left; top:859px; left:80px; width:85%; height:40px; background:url(../images/Fond/bandeau2.png); border-left:1px #fff outset; border-bottom:1px #000085 outset; border-right:1px #000085 outset; } div#menu1 { position:absolute; top:156px; left:80px; margin:0px; padding:0px; float:left; width:15%; height:700px; background:transparent; border-left:1px #fff outset; } div#contenu { position:absolute; top:156px; left:244px; margin:0px; padding:0px; float:right; width:69%; height:700px; border-right:1px #000085 outset; background-color:transparent; overflow:auto; }
Partager