• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

iPad input button style bearbeiten

Nightloewe

Neues Mitglied
Ich hab ein Problem undzwar hätte ich es gerne das bei meinen iPad der border-radius anders ist, doch das geht nicht.

Hier der Code:
HTML:
<html>
<head>
<style>
body {
background-color: #F2F2F2;
font-family: Arial;
}
.inputs {
height: 35px;
border: 1px solid #D8D8D8;
font-size: 17;
}
.submit {
height: 30px;
width: 50px;
border-radius: 3px;
-webkit-border-radius: 3px;
border-top-radius: 3px;
border-right-radius: 3px;
border-left-radius: 3px;
}
.login-div {
background-color: white;
position: absolute;
margin-left: -150;
left: 45%;
border: 1px solid #D8D8D8;
border-radius: 3px;
width: 400px;
}
.login-div2 {
margin: 5;
}
</style>
</head>
<body>
<div class="login-div">
<div class="login-div2">
<h1>Bitte melden sie sich an!</h1>
<form action="login.php?page=acccheck" method="post">
<input type="text" size="24" maxlength="50"
name="username" placeholder="Benutzername" class="inputs"><br><br>

<input type="password" size="24" maxlength="50"
name="password" placeholder="Passwort" class="inputs"><br><br>

<input type="submit" value="Login" class="submit"><br>
</div>
</div>
 
Zurück
Oben