Che comando si usa per fare in modo che il testo vada su piu righe in un uno spazio dove l'utente puo inserire delle note ?
L'html della form
codice:
<form id="contact" method="post" action="">
<fieldset>
-
<label for="tuonome"><abbr title="campo obbligatorio"></abbr></label>
<input type="text" name="tuonome" id="tuonome" tabindex="1" />
-
<label for="yourmail"><abbr title="campo obbligatorio"></abbr></label>
<input type="text" name="mail" id="mail" tabindex="2" />
-
<label for="object"><abbr title="campo obbligatorio"></abbr></label>
<input type="text" name="object" id="object" tabindex="3" />
-
<label for="note"><abbr title="campo obbligatorio"></abbr></label>
<input type="text" name="note" id="note" tabindex="4" />
</fieldset>
</form>
Questo è il css dove vorrei fare inserire il testo su piu righe
codice:
#note{
background:#ccc none repeat scroll 0 0;
border:none;
float:left;
margin:205px 0 0 123px;
padding:10px;
width:290px;
height:75px;
}