Skip to content

Instantly share code, notes, and snippets.

@aviogreen
Created May 19, 2015 04:36
Show Gist options
  • Save aviogreen/a647425020ba75fd73c9 to your computer and use it in GitHub Desktop.
Save aviogreen/a647425020ba75fd73c9 to your computer and use it in GitHub Desktop.
/*******************************************************
:: Absolute
*******************************************************/
.absolute-top-right {
position: absolute;
right: 0;
top: 0;
}
.absolute-top-left {
position: absolute;
left: 0;
top: 0;
}
.absolute-bottom-left {
position: absolute;
left: 0;
bottom: 0;
}
.absolute-bottom-right {
position: absolute;
right: 0;
bottom: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment