inspiron: Zwei CSS formatierungen für Textarea verwenden

Beitrag lesen

Hallo,
falls jetzt hier doch noch jemand lesen sollte, 'n schönen 4. Advent!

Bin auf Arbeit und habe ein Problem beim anpassen eines Formulars.

Ist eine der Textboxen beim absenden des Formulars leer dann wird diese rot markiert. Das funktioniert!
Nun möchte ich aber über CSS die Boxen unterschiedlich formatieren (Größe,...)
Leider bekomme ich das nicht hin. Ich gehe mal davon aus, das ich nicht 2x "class" verwenden kann. Aber wie kann ich das lösen?

Gruß Mario

  
<?php  
error_reporting(E_ALL ^  E_NOTICE); //localhost keine Notizen mehr, alle anderen Fehler werden aber angezeigt  
?>  
<html>  
<head>  
<style type="text/css">  
<!--  
  
.text_halb {  
	background-color:#FFF;  
	color: #4d4d4d;  
	border: 1px solid #c4c4c4;  
	font: 14px Helvetica, Arial, "Nimbus Sans L", FreeSans, sans-serif;  
	padding: 8px 12px;  
	width: 250px;  
	}  
.text_full {  
	background-color:#FFF;  
	color: #4d4d4d;  
	border: 1px solid #c4c4c4;  
	font: 14px Helvetica, Arial, "Nimbus Sans L", FreeSans, sans-serif;  
	padding: 8px 12px;  
	width: 500px;  
	}  
  
textarea.error {  
    border-color: red;  
	border-style: solid;  
	border-top-width: 2px;  
	border-right-width: 2px;  
	border-bottom-width: 2px;  
	border-left-width: 2px;  
	}  
-->  
</style>  
  
  
</head>  
<body>  
<?php  
  
$errorFelder = array();  
$error = null;  
$felder = array("content_1", "content_2");  
  
// hier startet die ueberpruefung von den Eingabe im Formular  
if(isset($_POST['ueberpruefung'])) {  
  $error = false;  
  
  foreach($felder as $feld) {  
    if(empty($_POST[$feld])) {  
      $error = true;  
      $errorFelder[$feld] = true;  
    }  
  }  
  
  
}  
  
  
//  
if($error === false) {  
  
  echo "gro&szlig;es textfeld --- ".$_POST['content_1'];  
  echo "<br>";  
  echo "kleines textfeld --- ".$_POST['content_2'];  
  
} else {  
  
  if($error === true)  
       echo "<b>Bitte die Rot markierten Felder ausf&uuml;llen!</b>";  
  ?>  
  
  
<form  method="post" action="<?php echo htmlspecialchars($_SERVER['PHP_SELF'])?>">  
  
  gro&szlig;es textfeld:<br>  
  <textarea name="content_1" <?php if(isset($errorFelder['content_1'])) echo 'class="error"'; ?>><?php echo htmlentities($_POST['content_1']);?></textarea> <br>  
  kleines textfeld:<br>  
  <textarea class="text_halb" name="content_2" <?php if(isset($errorFelder['content_2'])) echo 'class="error"'; ?>><?php echo htmlentities($_POST['content_2']);?></textarea> <br>  
  
  
  <input type="hidden" name="ueberpruefung" value="1">  
  <input type="submit" name="Tutorial" value="Absenden">  
</form>  
  <?php  
  
 }  
  ?>  
  
</body>  
</html>