hi, I have the following code, that displays a div. How do you display it so it is the centre of the screen? Similar to Yell.com
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
body
{
MARGIN: 18px;
PADDING: 0px;
}
div
{
WIDTH: 45.4em;
HEIGHT: 25.5em;
BORDER: 4px solid rgb(0,0,0);
BACKGROUND: rgb(255,255,255);
}
</style>
</head>
<body>
<div></div>
</body>
</html>