28172 sujets

CSS et mise en forme, CSS3

salut,

j'essaie d'avoir un champ de text avec une bordure de 1px en gris, mais après maint essai je n'y arrive pas Smiley decu

voici mon code.

.champs {
	width:358px;
	height:20px;
	border-right:#808080 1px solid;
	border-top:#808080 1px solid;
	border-left:#808080 1px solid;
	border-bottom:#808080 1px solid;
	color:#808080;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
}


merci d'avance Smiley decu Smiley decu Smiley decu
tu as quelques chose comme ca dans ton html ? <input type="text" name="textfield" class="champs" />
sinon utilises avec input directement !?
input {
width:358px;

	height:20px;

	border:#45EFEF 1px solid;

	color:#808080;

	font-family:Verdana, Arial, Helvetica, sans-serif;

	font-size:12px;

	font-weight:normal;}