Salut ,
Oui, c'est possible,
Oui, c'est facile,
Oui, je vais t'aider.
il te faut mettre des "class" a ton input:
( perso, je code toujours dans la fiche css)
Partie html:
<input type="text" name="horloge" size=8 value="Ton e-mail ici" class="text">
et la partie css :
.text
{
background-color:white;
color:black;
-moz-border-radius: 30px;
-webkit-border-radius: 30px;
border-radius: 30px;
width:60%;
margin-top: 2%;
margin-bottom: 2%;
margin-left:20%;
margin-right:20%;
border: 4px solid black;
}
.text:hover
{
background-color:grey;
}