1. Styliser un input en CSS.

Voici la meilleur méthode pour modifier l'apparence de la balise input en CSS2:

<blockquote>input[type="reset"] {

 //votre style pour les boutons reset

} input[type="submit"]{

//votre style pour les boutons submit

}

  1. Alignement vertical d'un texte en CSS


Il n'est pas possible nativement de mettre du texte en vertical avec le CSS2 et cette possibilité ne sera pas possible en CSS3 non plus.
Voici une méthode si vous avez mieux faite m'en part.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1"
>

<style type="text/css" title="currentStyle">
p{
display: block;
font: 22px Verdana;
height: 170px;
width: 20px;
margin-top: 5px;
margin-left: 5px;
text-align: center;
}
</style>
</head>
<body>
      <p>L A B O L I N U X</p>
</body>
</html>