hallo zusammen
Ich habe mal eine frage...
Ich habe einen normalen input submit auf meiner Seite, und moechte den am rechten Tabellenrand kriegen.
Habe schon mehrfach ausprobiert mit align=right und margin-right:5px
sowohl im html code als auch in css..
Kann mir da jemand weiterhelfen? Hier der html code mit den css Angaben dazu. Es geht um den letzten input name=login der rechts buending an der Tabelle sitzen sollte
Danke
<style type="text/css">
h1 { color:White; font-size:1em; line-height:1em; margin-left:5px; margin-bottom:0px;margin-top:0px}
p {color:Black; font size 0.7em; margin-left: 5px; margin-right:5px; margin-top:5px; margin-bottom:5px}
.darkbluebox { background-color:#006699}
.whitebox { background-color:#FFFFFF}
.button { background-color:#CCCCFF; color:#Black; border:2px solid #006699; margin-top:10px; margin-bottom: 0px }
</style>
<table align="center" border="1" bordercolor="#006699" cellpadding="0" cellspacing="0" width="215">
<tr >
<td class="darkbluebox">
<h1> Mein Profil
</h1>
</td>
</tr>
<tr>
<td width="215" class="whitebox">
<form action="input_text.htm">
<p>Email:<input style="width: 98%" name="email" type="text"size="24" maxlength="50" >
Passwort:<input style="width: 98%" name="password" type="text" size="24" maxlength="30">
<input name="login" style width=" 100px" class="button" type="submit" size="15" maxlength="15" value="Anmelden" style color="Black">
</p>
</form>
</td>
</tr>
</table>