Ok. Ik heb een table :
Nu wil ik deze graag omzetten naar CSS. Alles behalve 1 column is vast. Nu heb ik dit als css
en html :
Bedoeling is dus dat alle ruimte voor slogan_container gereserveerd wordt. Nu lukt dit wel als ik mijn venster gemaximaliseerd heb op 1024x768, maar als ik de window resize gaat het helemaal mis. Voorbeeld heb ik hier staan : http://www.leihitu.nl/downloads/css/
Kan iemand mij hiermee helpen?
code:
1
2
3
4
5
6
7
8
9
| <table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td width="211"> </td>
<td width="14"> </td>
<td> </td>
<td width="14"> </td>
<td width="182"> </td>
</tr>
</table> |
Nu wil ik deze graag omzetten naar CSS. Alles behalve 1 column is vast. Nu heb ik dit als 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
| body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
#header{
width:100%;
height:64px;
border-bottom: 6px solid #eaeff3;
background-color: #000000;
}
#logo{
background-repeat: no-repeat;
width:211px;
height:64px;
float:left;
background-color: #99FF33;
}
#logo span{
display:none;
}
#header #spacer_14px{
width:14px;
height:64px;
background-color: #0000FF;
float:left;
}
#slogan_container
{
width:58%;
height:64px;
float:left;
}
#slogan{
height:64px;
width:329px;
background-color: #CC99CC;
}
#slogan span{
display:none;
}
#flags{
height:64px;
width:182px;
background-color: #996666;
float:left;
} |
en html :
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <div id="header">
<div id='logo'>
<span><strong>Logo</strong></span>
</div>
<div id='spacer_14px'></div>
<div id='slogan_container'>
<div id='slogan'>
<span><i>Slogan</i></span>
</div>
</div>
<div id='spacer_14px'></div>
<div id='flags'></div>
</div> |
Bedoeling is dus dat alle ruimte voor slogan_container gereserveerd wordt. Nu lukt dit wel als ik mijn venster gemaximaliseerd heb op 1024x768, maar als ik de window resize gaat het helemaal mis. Voorbeeld heb ik hier staan : http://www.leihitu.nl/downloads/css/
Kan iemand mij hiermee helpen?