Forum Moderators: not2easy
and a warm welcome to these forums ;)
Try it like this...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>disabled black textarea</title><meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<style type="text/css">
/*<![CDATA[*/#txt {
background:#000;
width:324px;
height:120px;
font-family:arial;
font-size:24px;
}/*//]]>*/
</style></head>
<body><form action="#">
<div>
<textarea id="txt" disabled="disabled" rows="" cols="">
this textarea is not in use but has a black background instead of the default grey.
</textarea>
</div>
</form></body>
</html>
birdbrain