Halo,
Ik ben begonnen met een design wat blijkt nu.
in internet explorer geeft hij mijn login divke juist weer en in firefox zet hij deze gewoon langs de kant onder mijn andere div?
mijn HTML
Hier geeft hij die div van logincontainer slecht weer.
Hier de CSS
Alvast bedankt.
Ik ben begonnen met een design wat blijkt nu.
in internet explorer geeft hij mijn login divke juist weer en in firefox zet hij deze gewoon langs de kant onder mijn andere div?
mijn HTML
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
| <html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>IDEC Website</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="idec.css" rel="stylesheet" type="text/css" />
<link href="menu.css" rel="stylesheet" type="text/css" />
</head>
<body bgcolor='#0303b5'>
<table align="center">
<div class="container">
<div class="banner">
<div class="loginContainer">
<form name="Login" action="#" method="post" class="loginForm">
Login: <br />
<input type="text" name="login" maxlength="30" class="loginTextBox"/> <br />
Password: <br />
<input type="password" name="password" maxlength="20" class="loginTextBox"/> <br />
<input type="submit" value="Login" class="loginSubmit" />
</form>
</div>
<div class="menucontainer">
<a href="#" class="buttontext" ><div class="about" onMouseDown="this.className='aboutPress'" onMouseUp="this.className='about'">About US</div>
</a>
</div>
</div>
<div class="content">
<h1> About</h1>
</div>
</div>
</table>
</body>
</html> |
Hier geeft hij die div van logincontainer slecht weer.
Hier 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
| .container{
width:700px;
height:auto;
margin-left:auto;
margin-right:auto;
}
.banner{
width:700px;
height:159px;
background-image:url(images/banner.gif);
}
.menucontainer{
width:700px;
max-height:25px;
position:relative;
top:0px;
}
.content{
background-image:url(images/Content.gif);
width:700px;
min-height:20px;
height:auto;
}
.loginContainer{
background-color:transparant;
width:100px;
min-height:20px;
position:relative;
top:15px;
left:550px;
color:#FFFFFF;
}
form.loginForm{
position:relative;
top:15px;
left:550px;
width:100px;
position:static;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
}
.loginTextBox{
width:80px;
height:20px;
font-size:10px;
margin-left:10px;
}
.loginSubmit{
width:45px;
margin-left:45px;
} |
Alvast bedankt.