Skip to content

Instantly share code, notes, and snippets.

@zackseuberling
Last active December 14, 2015 04:28
Show Gist options
  • Save zackseuberling/5027978 to your computer and use it in GitHub Desktop.
Save zackseuberling/5027978 to your computer and use it in GitHub Desktop.
Lab 6, positioning elements using the positon attribute
#container {
position: relative;
}
#relative-box {
position: absolute;
top: 100px;
left: 100px;
}
#absolute-box {
position: absolute;
top: 100px;
left: 100px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment