elemento PA è nuovo anche a me...non si finisce mai di imparare...
dovrebbe andar bene come descritto da hcka
per farti un esempio:


codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><head>        
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">   
<title>Box centrato</title>   
<style type="text/css"> 
html, body { 	
height: 100%;
 }  
#centrato {
width: 100px; 	
height: 100px; 	
text-align: center; 	
border: 1px solid #000; 	
background-color: red; 	
color: #fff; 	
position: absolute; 	
left: 50%; 	
top: 50%; 	
margin-left: -50px; 	
margin-top: -50px; 
} 
</style>  
</head>
<body>   
<div id="centrato">


contenuto del div.</p>
</div>   
</body>
</html>