Ciao a tutti ho un problemone.St sclerando per poter centrare una table o un oggetto di un form all'interno della pagina:

esempio


<body>
<div class="back">
<form action="choose.php?user=<? echo $user?>" method=post>
<input type=submit value="Menù Principale">
</form>
</div>
</body>

e il css è:


div.back{

top: 400px;

}

body {
font-style: normal;
font-variant: normal;
font-weight: normal;
font-size: 10pt;
font-family: Arial,
Helvetica,
sans-serif;
color: black;
/*background-color: #cccfff;*/
background-image: url(../img/001.jpg);
text-align:center;
margin:10 auto;
width: 90%;
/*background-repeat: repeat*/
}

table {
font-style: normal;
font-variant: normal;
font-weight: normal;
font-size: 10pt;
font-family: Arial,
Helvetica,
sans-serif;
color: black;
border-spacing: 0;
align:center
}



Perchè il pulsante rimane in alto?
Perchè se inserisco altri DIV contenenti delle table , me li mette sulla sinistra e non in centro?