Skip to content

Instantly share code, notes, and snippets.

@samshull
Created January 16, 2012 16:04
Show Gist options
  • Save samshull/1621538 to your computer and use it in GitHub Desktop.
Save samshull/1621538 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<style>
* { margin: 0; padding: 0; }
html, body { height: 100%; min-height: 100%; min-width: 100%; }
#expanding-width-background { width: 100%; height: 100%; position: absolute; top: 0; z-index: 1; background: red; }
#fixed-width { width: 500px; height: 100%; position: relative; z-index: 2; margin: 0 auto; background: blue; }
</style>
</head>
<body>
<div id="expanding-width-background"></div>
<div id="fixed-width"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment