[Racine des codes] [Page précédente]

form css - transition

/Html JavaSript/css/form css - transition.html
<html>
<head>
<style type="text/css">
input, label {
  margin:2px;
}
label {
  float: left;
  width: 100px;
  text-align: right;
}
</style>
</head>
<body>

<div style="border:1px solid gray; margin:0 25%;"><br>
<form>
  <label>login :</label>
  <input name="login" type="text"><br>
  <label>password :</label>
  <input name="password" type="password"><br>
  <label></label>
  <input type="submit">
</form>
</div>

</body></html>
[edit]