Holas, creo que [PedroJTR], se referia a algo asi...
Código:
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>.:: Vaidacion CSS ::.</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<style type="text/css">
.mal{
background-color: #F08080;
/*background-color:"#00FF00";*/
border:1px solid red;
}
</style>
<script type="text/javascript">
function valida(){
if(document.getElementById('nombre').value==''){
document.getElementById('nombre').className='mal';
return -1;
}else{
document.getElementById('nombre').className='';
}
if(document.getElementById('apellido').value==''){
document.getElementById('apellido').className='mal';
return -1;
}else{
document.getElementById('nombre').className='';
}
alert("Todo Ok");
}
</script>
<body>
<input type="text" name="nombre" id="nombre" /><br />
<input type="text" name="apellido" id="apellido" /><br />
<input type="button" name="valida" value="valida" onclick="valida()" />
</body>
</html>
Tendrias que adaptarlo a tus necesidades, y claro reducir el codigo javascript pues si tienes varios campos, habran muchos if....