Hallo, ich habe folgenden Code, funktioniert auch super, nur wenn ich jetzt will, dass die Anmeldeboxen nach oben, unten und nach rechts 4px Abstand haben, haut es nicht hin, da die Box insgesamt breiter wird und nach unten habe ich mehr als 4px.
Hat vielleicht jemand eine Idee?
schiese
Code:
<html>
<head>
<title></title>
<style type="text/css">
<!--
#rechtsoben{
width:100%;
padding:3;
background-color:rgb(204,0,0);
text-align:right;
}
.loginfelder{
width:78px;
height:16px;
font-size:8pt;
font-family:Arial;
border:1px solid black;
}
#loginbutton{
width:40px;
height:16px;
font-size:8pt;
font-family:Arial;
border:1px solid black;
background-color:rgb(230,230,230);
}
//-->
</style>
</head>
<body>
<div id="rechtsoben">
<form method="post" action="login.php"><input class="loginfelder" type="text" name="loginname" maxlength="10"> <input class="loginfelder" type="text" name="loginpasswort" maxlength="10"> <input id="loginbutton" type="submit" value="Go"></form>
</div>
</body>
</html>
Hat vielleicht jemand eine Idee?
schiese