[CSS] W3C Validator und Darstellungsproblem

Eagle-PsyX-

Commander
Registriert
Juni 2006
Beiträge
2.121
Hi,
ich hab ein Darstellungsproblem mit meiner Seite Online Arts Store

Mein Darstellungsproblem:
Beim InternetExplorer sieht es relativ 'gut' aus.
Bei Firefox und Opera überhaupt nicht.

Ich hab in den Beispielsbildern eine orangene Linie gezogen für die höche, und kleine rote Striche für die Differenz der (falsch) aufgelegten Höche.

Wie kreig ich die alle in eine Höche?

Edit ahja, der Quelltext von CSS/HTML, natürlich werd ich das später (WENN es funktioniert) kürzer fassen^^:
Code:
.Login2 {
display:block;
background-color:#52545B;
color:#FFFFFF;
font-weight:bold;
text-align:center;
width:80px;
height:25px;
padding-right:5px;
padding-left:5px;
padding-top:2px;
padding-bottom:2px;
border:1px solid #FFFFFF;
text-decoration:none;
}

.Login2B {
background-color:#52545B;
color:#FFFFFF;
font-weight:bold;
text-align:center;
width:80px;
height:25px;
padding-right:5px;
padding-left:5px;
padding-top:2px;
padding-bottom:2px;
border:1px solid #FFFFFF;
text-decoration:none;
}

.Login {
background-color:#52545B;
color:#FFFFFF;
font-weight:bold;
text-align:center;
width:100px;
height:22px;
padding-right:5px;
padding-left:5px;
padding-top:2px;
padding-bottom:2px;
border:1px solid #FFFFFF;
text-decoration:none;
}

.Register {
background-color:#52545B;
color:#FFFFFF;
font-weight:bold;
text-align:center;
width:80px;
height:25px;
padding-right:10px;
padding-left:10px;
padding-top:1px;
padding-bottom:3px;
border:1px solid #FFFFFF;
text-decoration:none;
}

.Login2B {
background-color:#52545B;
color:#FFFFFF;
font-weight:bold;
text-align:center;
width:80px;
height:25px;
padding-right:5px;
padding-left:5px;
padding-top:2px;
padding-bottom:2px;
border:1px solid #FFFFFF;
text-decoration:none;
}
HTML:
Code:
<form action="Index.php?Site=Login" method="post">
		<table width="100%" border="0" cellpadding="0" cellspacing="0">
			<tr>
				<td width="35%" align="center" valign="top"><font class="Text">Username: </font><input type="text" name="username" class="Login2B"></td>
				<td width="35%" align="center" valign="top"><font class="Text">Password: </font><input type="password" name="password" class="Login2B"></td>
				<td width="15%" align="center" valign="top"><input type="submit" value="Login" class="Login2"></td>
				<td width="15%" align="center" valign="top"><a href="Index.php?Site=Register" class="Register">Register</a></td>
			</tr>
		</table>
</form>
 

Anhänge

  • IE.gif
    IE.gif
    1,7 KB · Aufrufe: 172
  • FF-Opera.gif
    FF-Opera.gif
    1,7 KB · Aufrufe: 158
Zuletzt bearbeitet:
Zurück
Oben