Skip to content

Instantly share code, notes, and snippets.

@erikhazzard
Created September 27, 2012 23:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save erikhazzard/3797171 to your computer and use it in GitHub Desktop.
Save erikhazzard/3797171 to your computer and use it in GitHub Desktop.
full width
<html>
<head>
<style>
body {
bottom: 0;
left: 0;
margin: 0;
padding: 0;
position: absolute;
right: 0;
top: 0;
}
#my-div {
background: #336699;
bottom: 0;
left: 80%;
position: absolute;
right: 0;
top:0;
}
</style>
</head>
<body>
<div id='my-div'> </div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment