Skip to content

Instantly share code, notes, and snippets.

@erichocean
Created October 1, 2008 20:27
Show Gist options
  • Save erichocean/14184 to your computer and use it in GitHub Desktop.
Save erichocean/14184 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<style>
body {
position: absolute;
right: 100px;
height: 600px;
top: 50%;
margin-top: -300px;
left: 100px;
border: 1px solid black;
overflow: hidden;
}
#outer {
position: absolute;
width: 400px;
left: 50%;
margin-left: -200px;
height: 400px;
top: 50%;
margin-top: -200px;
border: 1px solid blue;
}
#inner {
position: absolute;
top: 100px;
right: 100px;
bottom: 100px;
left: 100px;
border: 1px solid red;
}
</style>
</head>
<body>
<div id="outer">
<div id="inner">
Testing 123
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment