Ik mis bij devolgende code een border om childDiv en childDiv2... Ik zit hier nu al tijden op te knagen en ik kom er maar niet uit. Ik heb de search al gebruikt, maar die heeft me niet kunnen helpen. Hier kan je zien wat ik bedoel.
WAT DOE IK FOUT??
Hier kan je de page zien: http://members.home.nl/mariusjansen/parent.php
Hoop dat de rotzooi nu wat minder erg is...
WAT DOE IK FOUT??
Hier kan je de page zien: http://members.home.nl/mariusjansen/parent.php
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
| <HTML>
<HEAD>
<TITLE>Test</TITLE>
<style type="text/css">
#parentDiv{
border:solid 1px black;
position:relative;
padding:0px;
top:1%;
width:700px;
left: 50%;
margin-left: -350px;
background-color:lightblue;
}
#Header {
margin:0px 0px 0px 0px;
padding:13px 0px 10px 10px;
height:40px;
border-style:solid;
width:700px;
border-color:black;
border-width:0px 0px 1px 0px ;
line-height:11px;
background-color:#eee;
}
#childDiv {
padding:0px;
position:absolute;
width:200px;
height:300px;
background-color:white;
}
#childDiv2 {
width:501px;
left: 200px;
position:absolute;
border:solid;
border-width:0px 0px 0px 1px;
height:590px;
border-color:black;
background-color:white;
}
#Menu {
position:absolute;
top:20px;
left:14px;
width:170px;
padding:10px;
background-color:#eee;
border-top:1px solid #999;
border-right:1px solid #999;
border-bottom:1px solid #999;
border-left: 1px solid #999;
line-height:17px;
}
#Footer {
border-style:solid;
border-color:black;
border-width:1px 1px 1px 1px;
position:relative;
width:700px;
height:40px;
line-height:11px;
left: 50%;
margin-left: -350px;
background-color:#eee;
padding:13px 0px 10px 10px;
}
body {
margin:0px 0px 0px 0px;
padding:0px;
font-family:verdana, arial, helvetica, sans-serif;
color:#333;
background-color :white;
font:11px/20px verdana, arial, helvetica, sans-serif;
}
h1 {
margin:0px 0px 15px 0px;
padding:0px;
font-size:24px;
line-height:28px;
font-weight:900;
color:#ccc;
}
</style>
</head>
<body>
<DIV ID="parentDiv">
<DIV ID="Header"><SPAN ID="titel">HEADER</SPAN></A> </DIV>
<DIV ID="childDiv">
<H1>childDiv</H1>
</DIV>
<DIV ID="childDiv2">
<H1>childDiv2</H1><P></P>
</DIV>
</DIV>
</body>
</html> |
Hoop dat de rotzooi nu wat minder erg is...
[ Voor 18% gewijzigd door Verwijderd op 19-06-2003 23:31 . Reden: Rotzooi opruimen :) ]