Problème: La couleur du blocHaut s'applique à toute la page..pourtant ce dernier a était écrit comme les autres..
merci d'avance.
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
60
61
62
63 <html> <head><center><h4><font face="Rockwell" color="blue"> Bienvenue sur le site </center></font></h4> <style type= "text/css"> body { .blocHaut{ height: 30px; width: 760px; background-color: blue; float: left; color: red; margin-left: 20px; margin-bottom:20px; } .blocGauche{ height: 300px; width: 100px; background-color: yellow; float: left; margin-top: 50px; margin-left:50px; color: black; } .blocCentre { height: 300px; width: 500px; background-color: red; float: left; margin-top:50px; margin-left:20px; color: white; } .blocDroite{ height: 300px; width: 100px; background-color: green; float: left; margin-top:50px; margin-left: 20px; color: white; } } </style> </head> <body> <div class="blocHaut">Haut</div> <div class="blocGauche">Gauche</div> <div class="blocCentre">Centre</div> <div class="blocDroite">Droite</div> </body> </html>
Partager