Me gustaria cambiar el color del borde y el color de la letra del textarea. El problema que dentro del html no se como llamar bien al textarea para que aparezca. Creo que el css esta bien.
Gracias
Código PHP:
<html>
<head>
<title>.:Formulari alta clients:.</title>
<!-- Formulari CSS -->
<STYLE>
@import url(formulari.css);
</STYLE>
</head>
<body>
<h1>Formulari d'alta de clients</h1>
<h2>Dades personals:</h2>
<form name='formulari_alta' action='alta_client.php' method='post>
<div class="fila">
<span class="etiqueta"><label for="nif">NIF</label></span>
<span class="form_t"><input id="nif" name="nif" type="text" /></span>
</div>
<div class="fila">
<span class="etiqueta"><label for="nom">Nom i cognom</label></span>
<span class="form_t"><input id="nom" name="nom" type="text" /></span>
</div>
<div class="fila">
<span class="etiqueta"><label for="direccio">Direcció</label></span>
<span class="form_t"><input id="direccio" name="direccio" type="text" /></span>
</div>
<div class="fila">
<span class="etiqueta"><label for="localitat">Localitat</label></span>
<span class="form_t"><input id="localitat" name="localitat" type="text" /></span>
</div>
<div class="fila">
<span class="etiqueta"><label for="cp">Codi postal</label></span>
<span class="form_t"><input id="cp" name="cp" type="text" /></span>
</div>
<div class="fila">
<span class="etiqueta"><label for="provincia">Provincia</label></span>
<span class="form_t"><input id="provincia" name="provincia" type="text" /></span>
</div>
<div class="fila">
<span class="etiqueta"><label for="email">E-mail</label></span>
<span class="form_t"><input id="email" name="email" type="text" /></span>
</div>
<div class="fila">
<span class="etiqueta"><input type="submit" value="Registrar"></span>
<span class="form_t"><input type="reset" value="Esborrar tot"></span>
</div>
</form>
</body>
</html>
Código PHP:
/* CSS */
#body {
background: #FAFAFA;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
font-family:Monaco,Georgia,Times,serif;
color: #0080FF;
}
/* Formulari */
form {
font-family:Monaco,Georgia,Times,serif;
color: #0080FF;
margin-top: 20px;
}
textarea {
font-family:Monaco,Georgia,Times,serif;
color: #0080FF;
height: 60px;
}
.fila {
clear: both;
width: 400px;
height: 25px;
}
.fila span.etiqueta {
font-family:Monaco,Georgia,Times,serif;
color: #0080FF;
float: left;
width: 160px;
margin-right: 15px;
margin-top: 2px;
text-align: right;
}
.fila span.form_t {
font-family:Monaco,Georgia,Times,serif;
color: #0080FF;
float: right;
width: 220px;
text-align: left;
margin-bottom: 5px;
}