Ik ben een website voor informatica aan het maken en deze bouw ik met DIVs. Hij moest een height van 100% krijgen en dit is ook gelukt; De footer komt gewoon netjes onderaan te staan. Nu heb ik alleen het probleem dat wanneer ik firefox gebruik en de tekst in het showgedeelte teveel is om zonder scrollbar te laten zien, dat de footer niet mee wil gaan, maar die blijft gewoon eigenwijs onderaan het scherm. In internet explorer loopt alles gewoon wel mee.
Hier is mijn site: <snip>
De CSS:
Om de code van de html te kunnen zien, moet je even broncode weergeven doen.
Zou iemand mij hiermee kunnen helpen?
Hier is mijn site: <snip>
De 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
| html, body {
margin:0;
padding:0;
height: 100%;
background-color: #3F4D73;
text-align: center;
font-family: Verdana;
font-size: 10pt;
text-decoration: none;
color: #444;
}
html {
overflow-y: scroll;
}
.clear {
clear: both; /* deze class gaan we gebruiken om de twee floats #left en #right te clearen. */
}
#container {
width: 1013;
position: relative;
background-image: url('../images/background.gif');
height: 100%;
min-height: 100%;
margin: 0 auto;
}
#left {
width: 39;
height: 400;
background-image: url('../images/left.gif');
float: left;
}
#nav {
width: 935;
height: 28;
float: left;
background-image: url('../images/navhead.gif');
}
#right {
width: 39;
height: 400;
background-image: url('../images/right.gif');
float: right;
}
#header {
width: 935;
height: 137;
float: left;
background-image: url('../images/header.gif');
}
#margintop {
width: 935;
height: 5;
float: left;
background-color: #223053;
}
#leftshowcontainer {
width: 620;
*width: 625;
float: left;
padding-left: 5px;
height: 100;
}
#leftshowhead {
width: 613;
height: 16;
background-image: url('../images/showhead.gif');
float: left;
}
#leftshow {
width: 603;
*width: 600;
height: auto;
background-image: url('../images/showbackground.gif');
float: left;
text-align: left;
padding-left: 5px;
padding-right: 5px;
}
#leftshowfoot {
width: 613;
height: 12;
background-image: url('../images/showfoot.gif');
position: absolute;
bottom: 60px;
*bottom: 66px;
*right: 355px;
}
#rightshowcontainer {
width: 310;
height: 100;
float: left;
height: auto;
}
#mustvisit {
width: 302;
height: 142;
float: left;
margin-top: 5px;
}
#shortcutscontainer {
float: left;
height: auto;
width: 303;
}
#shortcutshead {
float: left;
height: 19;
width: 303;
background-image: url('../images/shortcutshead.gif');
}
#shortcuts {
float: left;
height: auto;
width: 303;
background-image: url('../images/shortcutsbg.gif');
}
#shortcutsfoot {
float: left;
height: 9;
width: 303;
background-image: url('../images/shortcutsfooter.gif');
background-repeat: no-repeat;
}
#footercontainer {
float: left;
position: absolute;
height: auto;
bottom: 0px;
*bottom: -1px;
right: 40px;
*right: 38px;
}
#marginfoot {
width: 935;
height: 5;
*height: 3;
float: left;
background-color: #223053;
}
#footer {
width: 935;
height: 42;
float: left;
background-image: url('../images/footertop.gif');
}
#footerfoot {
width: 935;
height: 14;
float: left;
background-color: #121826;
} |
Om de code van de html te kunnen zien, moet je even broncode weergeven doen.
Zou iemand mij hiermee kunnen helpen?
[ Voor 1% gewijzigd door RobIII op 16-01-2008 00:22 ]