Something like that, although that link doesn't give many details...
With some other help, I managed to get it working as follows:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
html, body {
margin: 0;
background: #FC6;
}
#container {
width: 800px;
margin: 30px auto;
padding: 50px 0 500px;
position: relative;
background: #999;
}
#banner {
height: 100px;
width: 700px;
margin: 0 auto;
background: #fc0;
}
#logo {
height: 100px;
width: 200px;
position: absolute;
top: -25px;
left: 500px;
background: #099;
}
</style>
</head>
<body>
<div id="container">
<div id="banner"></div>
<div id="logo"></div>
<!--end container--></div>
</body>
</html>
Bookmarks