Ik heb een website gemaakt die bestaat uit divs. Alles werkt prima, in IE, FF etc. Maar ik ze in de source een paar - waarden. Dit lijkt mij nog al vreemd en kan ook buggy zijn in andere browsers. Wat heb ik verkeerd gedaan?
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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #68777B;
}
#container {
margin: 0 auto;
width: 899px;
height: 436px;
background-color: #8E999C;
text-align: left;
}
#header {
width: 421px;
height: 97px;
background-image:url(heading.jpg);
margin-left:477px;
margin-top:-436px;
}
#theme {
width: 376px;
height: 436px;
background-image:url(left8.jpg);
}
#content {
width: 421px;
height: 339px;
background-image:url(content.jpg);
margin-left:477px;
margin-top:-1px;
}
#menu {
width: 101px;
height: 436px;
background-image:url(menu.jpg);
margin-left: 376px;
margin-top: -436px;
}
-->
</style>
</head>
<body>
<div id="container">
<div id="theme"></div>
<div id="menu"></div>
<div id="header"></div>
<div id="content"></div>
</div>
</body>
</html> |
[ Voor 14% gewijzigd door Verwijderd op 12-04-2005 14:28 ]