Ciao a tutti.
Sto avendo un grosso problemone con l'attributo overflow per un div: su IE tutto ok, su FF il div si sposta e va a cavallo di un div vicino.
Questo e' il link:
http://proto.askers.it/index.php?page=gbook_rd&gbpage=1
Se tolgo l'attributo overflow al div in questione torna totto ok, con pero' il problema che ora il div viene processato con overflow: visible...
Eccovi il css con la parte sui DIV
codice:
#container{
	border: 1px;
	border-style: solid;
	border-color: #000000;
	background-color: #222222;
	width: 970px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 14px;
}

#header{
	border: 0px;
	height: 78px;
	margin: 0px;
	text-align: center;
}

#frameset{
	border: 0px;
	height: 454px;
	background-image: url(images/back.jpg);
	background-attachment: scroll;
	background-repeat: no-repeat;
	margin: 0px 0px 0px 0px;
}

#menusx{
	width: 150px;
	height: 454px;
	margin: 1px 0px 0px 0px;
	float: left;
	border: 0px;
	overflow: auto;
}

#menudx{
	width: 150px;
	margin: 1px 0px 0px 0px;
	float: right;
	border: 0px;
}

#main{
	width: 660px;
	height: 452px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1px;
	border: 0px;
	overflow: auto;
}

#footer{
	clear: both;
	border: 0px;
	margin: 0px 0px 0px 0px;
}
Il DIV in questione e' il main.

HELP!!!

Intanto grazie a tutti in anticipo dell'aiuto...

Ciao!

RB