ho creato una pagina index con questo script
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="it">
<head>
<title>Effetto "tendina" su div - Esempio JavaScript scaricato da HTML.it</title>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Language" content="it" />
<meta name="Robots" content="All" />
<meta name="Description" content="HTML.it - il sito italiano sul Web publishing" />
<meta name="Keywords" content="Lo script, grazie ad Ajax, permette di aprire un DIV con effetto tendina." />
<meta name="Owner" content="HTML.it srl" />
<meta name="Author" content="HTML.it srl" />
<meta name="Copyright" content="HTML.it srl" />
<script type="text/javascript" src="prototype.lite.js"></script>
<script type="text/javascript" src="moo.fx.js"></script>
<script type="text/javascript" src="moo.fx.pack.js"></script>
<script type="text/javascript">
window.onload = function() {
myHeight = new fx.Height('container', {duration: 1200});
myHeight.toggle();
}
</script>
<style>
#container{
margin: 10px;
background: #000;
color: #000;
width: 500px;
height:0px;
font-size: 1.1em;
}
</style>
</head>
<body >
<div align="center">
<DIV id="container">[img]E:\dinosauro\dinosauro.jpg[/img]
</DIV>
</body>
</html>
ho solo un problema che il contorno alla sezione "container" è bianco
come posso metterlo nero??
scusate la doimanda idiota ma sono alle prime armi