Skip to content

Instantly share code, notes, and snippets.

@ryo0508
Last active August 29, 2015 13:55
Show Gist options
  • Save ryo0508/8779637 to your computer and use it in GitHub Desktop.
Save ryo0508/8779637 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
#outer-wrapper {
position: absolute;
background-color: blue;
width: 100%;
max-width: 1280px;
height: 100%;
left:0;
right:0;
margin-left: auto;
margin-right: auto;
}
#inner-wrapper {
background-color: red;
width: 960px;
height: 100%;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="outer-wrapper">
<div id="inner-wrapper">
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment