CSS form not applying -
i have form:
<div class="jumbotron" id="jumbotron-6" align="center"> <form action="login.php" method="post"> <input type="text" placeholder="enter email" name="email"> <input type="password" placeholder="and password" name="password"> <input type="submit"> </form> </div>
and trying apply css it:
input [type="text"], input [type="password"] { outline: none; padding: 10px; display: block; width: 300px; border-radius: 3px; border:1px solid #eee; margin:20px auto; }
but not applying. have css linked page too.
remove spacing input[....]
input[type="text"], input[type="password"] { outline: none; padding: 10px; display: block; width: 300px; border-radius: 3px; border:1px solid #eee; margin:20px auto; }
<div class="jumbotron" id="jumbotron-6" align="center"> <form action="login.php" method="post"> <input type="text" placeholder="enter email" name="email"> <input type="password" placeholder="and password" name="password"> <input type="submit"> </form> </div>
Comments
Post a Comment