Div loopt niet goed door
Timo Kleinhout
24/07/2011 15:47:44Hallo,
Ik heb verschillende stekst boxjes maar ze lopen niet onder elkaar
http://img813.imageshack.us/img813/1324/vraag.jpg
Dus div.content moet links staan (onder elkaar doorlopen) en div.sidebar moet rechts staan (onder elkaar doorlopen)
HTML:
CSS:
Bedankt!!
Ik heb verschillende stekst boxjes maar ze lopen niet onder elkaar
http://img813.imageshack.us/img813/1324/vraag.jpg
Dus div.content moet links staan (onder elkaar doorlopen) en div.sidebar moet rechts staan (onder elkaar doorlopen)
HTML:
Code (php)
1
2
3
4
5
6
7
2
3
4
5
6
7
<div class="container">
<div class="content"><h1>Nieuws</h1></div>
<div class="sidebar">Tekst</div>
<div class="content">Tekst</div>
<div class="sidebar"><h1>Chat</h1><br>Tekst</div>
</div>
<div class="content"><h1>Nieuws</h1></div>
<div class="sidebar">Tekst</div>
<div class="content">Tekst</div>
<div class="sidebar"><h1>Chat</h1><br>Tekst</div>
</div>
CSS:
Code (php)
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
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
div.content{
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
width: 610px;
float: left;
overflow: auto;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #FFFFFF;
behavior: url(/PIE.htc);
}
div.sidebar{
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
width: 310px;
float: right;
overflow: auto;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #FFFFFF;
behavior: url(/PIE.htc);
}
div.container{
margin-left: auto;
margin-right: auto;
margin-top: 486px;
padding-top: 10px;
min-height: 100px;
overflow: auto;
width: 1000px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #101314;
behavior: url(/PIE.htc);
}
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
width: 610px;
float: left;
overflow: auto;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #FFFFFF;
behavior: url(/PIE.htc);
}
div.sidebar{
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
width: 310px;
float: right;
overflow: auto;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #FFFFFF;
behavior: url(/PIE.htc);
}
div.container{
margin-left: auto;
margin-right: auto;
margin-top: 486px;
padding-top: 10px;
min-height: 100px;
overflow: auto;
width: 1000px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #101314;
behavior: url(/PIE.htc);
}
Bedankt!!
PHP hulp
05/11/2024 22:29:17Joren de Wit
24/07/2011 15:59:28Dat lijkt me dezelfde vraag als hier: http://www.phphulp.nl/php/forum/topic/container-loopt-niet-door/79280/last/.
Je kunt dus gewoon in dat topic verder...
Je kunt dus gewoon in dat topic verder...