Hallo,
Het lukt mij niet om m'n website mooi te centreren in Internet explorer 7, in Firefox staat alles mooi.
Wat is er fout aan mijn code?
Stukje css:
Het lukt mij niet om m'n website mooi te centreren in Internet explorer 7, in Firefox staat alles mooi.
Wat is er fout aan mijn code?
Stukje css:
code:
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
| /* top elements */
* { margin: 0; padding: 0; }
body {
margin: 0; padding-left: 50px;
font: 70%/1.5 Verdana, Tahoma, Arial, Helvetica, sans-serif;
color: #333;
background: #FFF url(bg.gif) repeat-x;
}
/* links */
a {
color: #003366;
background-color: inherit;
text-decoration: none;
}
a:hover {
color: #FF0033;
background-color: inherit;
}
/* headers */
h1, h2, h3 {
font-family: Arial, 'Trebuchet MS', Sans-Serif;
font-weight: bold;
color: #333;
}
h1 {
font-size: 120%;
letter-spacing: .5px;
}
h2 {
font-size: 115%;
text-transform: uppercase;
}
h3 {
font-size: 115%;
color: #003366; |