Bonjour,
Je suis entrain de créer un site internet mais j'ai un problème concernant une certaine partie de ce site : le texte est agrandi et décalé vers le bas.
Voici une image pour résumer :
La partie du haut est la partie correcte et la partie du bas est la partie agrandie.
Je précise qu'il s'agit de 2 pages prises sans changement de code entre les 2.
Je pense que le problème viens du code css :
Il y a un ordinateur qui me fait ça et un autre sur lequel tout est bien.
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
64
65
66
67
68
69
70
71
72 body { background-color: white; font-family: Arial; font-size: 12px; color:black; margin:0px; padding-bottom:20px; overflow: auto } .header { height:70px; background:white; } #mainbody { padding-left:230px; background:white; border:0px solid brown; font-family: Arial; } #menu { position:absolute; top:270px; left:50px; width:130px; background:white; color:black; text-align: center; font-family: Arial; } .menuitem { left:0px; background:white; color:black; font-size:12px; text-align: center; } .menuhead { left: 0px; background:white; color:black; text-align: center; font-weight:bold; font-size:12px; } .footer { width:100%; text-align:center; margin-top:5px; margin-left:67px; background:white; color:black; } a:hover { font-size:14px; color:#000066} h1 { font-size:30px} h2 { font-size:18px} h3 { font-size:16px} h4 { font-size:12px; font-style:normal;} .heading { font-family:Arial; font-size:36px; background-color:yellow; color:brown; font-weight:bold; text-align: center}
Merci de vos réponses.
Partager